Zelda64Recomp/assets/scss/styles/components/CenteredPage.scss
2024-01-07 15:33:22 -06:00

35 lines
651 B
SCSS

@use 'sass:math';
$page-margin: 32;
$base-height: 1080;
.centered-page {
display: flex;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
padding: space($page-margin);
}
.centered-page__modal {
@extend %nav-all;
display: flex;
flex-direction: column;
position: relative;
margin: auto;
flex: 1 1 100%;
max-width: space(math.div($base-height*4, 3))dp;
width: 100%;
height: 100%;
background: $color-bg-shadow-2;
border-radius: $border-radius-modal;
border-color: $color-border-soft;
border-width: space(1);
}
.centered-page__modal panels {
flex: 1 1 100%;
}