91098bc437
* Split SCSS for easier changes * Re-ordered SCSS files for easier overrides of defaults * Fixed padding classes with auto value * Added theme """stub"""
35 lines
672 B
SCSS
35 lines
672 B
SCSS
// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
|
|
|
|
|
|
/* Inputs > Lang Selector */
|
|
|
|
#lang-selector {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
|
|
> summary {
|
|
cursor: pointer;
|
|
list-style: none;
|
|
user-select: none;
|
|
}
|
|
|
|
> div {
|
|
position: absolute;
|
|
z-index: #{$z-index-lang-dropdown};
|
|
top: 2rem;
|
|
right: 0;
|
|
min-width: 100%;
|
|
|
|
// Visibility transition
|
|
//height: 0;
|
|
//transition: height 0.4s;
|
|
//transition-timing-function: cubic-bezier(.25,.8,.25,1.1);
|
|
}
|
|
|
|
// TODO: Maybe force it to be visible when closes ?
|
|
|
|
//&[open] > div {
|
|
// height: auto;
|
|
//}
|
|
}
|