Spaces:
Sleeping
Sleeping
File size: 991 Bytes
eacff74 |
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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
@mixin overflow-auto($direction: 'both') {
@if $direction == 'both' {
overflow: auto;
} @else {
overflow-#{$direction}: auto;
}
-webkit-overflow-scrolling: touch;
}
@mixin clear-float {
&:after {
content: '';
display: block;
clear: both;
}
}
$font-size-s: 12px;
.features {
ul {
height: 100%;
@include overflow-auto(y);
@include clear-float();
li {
width: 33.3%;
float: left;
padding: 5px;
.inner-wrapper {
@include overflow-auto(x);
font-size: $font-size-s;
text-decoration: underline;
display: block;
padding: 10px;
text-align: center;
color: var(--console-error-foreground);
background: var(--console-error-background);
border: 1px solid var(--console-error-border);
&.ok {
background: var(--darker-background);
border: 1px solid var(--border);
color: var(--foreground);
}
}
}
}
}
|