blob: 079cae780a8b01181533ce249660eaecc11d6023 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
/// List Reset
%reset-list {
list-style-type: none;
margin: 0;
padding: 0;
li {
margin-bottom: 0;
}
}
/// Ordered List Reset
%reset-ordered-list {
@extend %reset-list;
li {
counter-increment: none;
display: list-item;
&::before {
display: none;
}
}
}
/// Display an inline list with flexbox
%flex-list {
@extend %reset-list;
display: flex;
flex-flow: row wrap;
}
|