Added modules with actions, reducer, selectors and structured style

This commit is contained in:
2020-03-26 04:05:20 +05:30
parent fc92e9564b
commit f92cfbb7fe
57 changed files with 3274 additions and 115 deletions

View File

@@ -0,0 +1,40 @@
// Lists
// ===
// Ordered and Unordered Lists
// ---
//
// We default to unstyled lists because they seem to be a more common usecase.
// Use the extensions to re-add the defaults back in.
//
// It is our recommendation that instead of styling the ul and ol directly that
// you create a list component that can be added to lists when needed.
ul,
ol {
margin: 0;
padding: 0;
list-style-type: none;
}
// Definition Lists
// ---
dl {
margin-bottom: $unit;
line-height: $line-height;
}
dt {
margin-top: $unit;
font-weight: $semi-bold-font-weight;
}
dd {
margin: 0;
}