15 lines
188 B
SCSS
15 lines
188 B
SCSS
|
%horizontal-list {
|
||
|
list-style-type: none;
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-size: 0px;
|
||
|
}
|
||
|
|
||
|
%horizontal-list-item {
|
||
|
display: inline-block;
|
||
|
|
||
|
&:last-of-type {
|
||
|
margin-right: 0;
|
||
|
}
|
||
|
}
|