overleaf-cep/services/web/frontend/stylesheets/bootstrap-5/abstracts/variables.scss
Tim Down 79e4b76551 Merge pull request #22222 from overleaf/td-thin-footer-react
Implement thin footer in Bootstrap 5

GitOrigin-RevId: c45f63b3d2536e6266eb55cc95df11b53a6b77ec
2024-12-17 09:05:23 +00:00

14 lines
325 B
SCSS

// Header
$header-height: 68px;
$toolbar-height: 40px;
$toolbar-small-height: 32px;
// Footer
$thin-footer-height: 50px;
$fat-footer-content-height: calc(100vh - $header-height);
$thin-footer-content-height: calc(
100vh - ($header-height + $thin-footer-height)
);
// List of allowed themes
$themes: ('default', 'light');