21 lines
459 B
SCSS
21 lines
459 B
SCSS
// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
|
|
|
|
/* Core > Overflow */
|
|
|
|
@mixin overflow-maker($overflow-type) {
|
|
.o-#{$overflow-type} {
|
|
overflow: #{$overflow-type} !important;
|
|
}
|
|
.ox-#{$overflow-type} {
|
|
overflow-x: #{$overflow-type} !important;
|
|
}
|
|
.oy-#{$overflow-type} {
|
|
overflow-y: #{$overflow-type} !important;
|
|
}
|
|
}
|
|
|
|
@include overflow-maker(auto);
|
|
@include overflow-maker(scroll);
|
|
@include overflow-maker(clip);
|
|
@include overflow-maker(hidden);
|