36 lines
633 B
SCSS
36 lines
633 B
SCSS
|
|
/*
|
|
|
|
LISTS
|
|
|
|
*/
|
|
|
|
.list { list-style-type: none; }
|
|
|
|
.list--h {
|
|
list-style-type: none;
|
|
.list--h-item { display: inline-block; }
|
|
}
|
|
|
|
@include break(not-small) {
|
|
.list--h-ns {
|
|
list-style-type: none;
|
|
.list--h-item-ns { display: inline-block; }
|
|
}
|
|
}
|
|
|
|
@include break(medium) {
|
|
.list-m { list-style: none; }
|
|
.list--h-m {
|
|
list-style-type: none;
|
|
.list--h-item { display: inline-block; }
|
|
}
|
|
}
|
|
|
|
@include break(large) {
|
|
.list-l { list-style-type: none; }
|
|
.list--h-l {
|
|
list-style-type: none;
|
|
.list--h-item { display: inline-block; }
|
|
}
|
|
}
|