Files
CSS-NibblePoker/scss/core/containers.scss
Herwin Bozet 9c9b1e17bd Added cursors, Fixed public domain header text in SCSS files
Update containers.scss, cursor.scss, and 12 more files...
2025-03-05 21:34:22 +01:00

20 lines
330 B
SCSS

// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
/* Core > Containers */
.fluid-container {
position: relative;
width: 100%;
height: 100%;
// First children, or all, don't care tbh.
& > * {
position: absolute;
width: inherit;
height: inherit;
max-height: inherit;
overflow-y: auto;
overflow-x: hidden;
}
}