14 lines
188 B
SCSS
14 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;
|
|
}
|
|
}
|