38 lines
723 B
CSS
38 lines
723 B
CSS
@import "/vendor/filament/filament/resources/css/theme.css";
|
|
@config "../../../../tailwind.config.js";
|
|
|
|
/* NetGescon: sticky footer + full-height layout */
|
|
.fi-layout {
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
}
|
|
|
|
.fi-main-ctn {
|
|
min-height: 100vh;
|
|
min-height: 100dvh;
|
|
display: flex !important;
|
|
flex-direction: column !important;
|
|
flex: 1 1 auto;
|
|
min-width: 0;
|
|
height: 100vh;
|
|
height: 100dvh;
|
|
}
|
|
|
|
.fi-main-ctn>main {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.fi-main {
|
|
flex: 1 1 auto;
|
|
min-height: 0;
|
|
}
|
|
|
|
.netgescon-footer {
|
|
position: sticky !important;
|
|
bottom: 0 !important;
|
|
z-index: 10 !important;
|
|
width: 100% !important;
|
|
flex: 0 0 auto;
|
|
margin-top: auto;
|
|
} |