14 lines
226 B
SCSS
14 lines
226 B
SCSS
|
.opalestate-note {
|
||
|
font-size:90%;
|
||
|
color:#888;
|
||
|
}
|
||
|
.list-inline {
|
||
|
list-style: none;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
li{
|
||
|
&:not(:last-child){
|
||
|
margin-right: $grid-gutter-width;
|
||
|
}
|
||
|
}
|
||
|
}
|