2024-01-07 22:33:22 +01:00
|
|
|
@use 'sass:math';
|
2024-01-07 01:04:28 +01:00
|
|
|
|
2024-01-07 22:33:22 +01:00
|
|
|
$page-margin: 32;
|
|
|
|
$base-height: 1080;
|
2024-01-07 01:04:28 +01:00
|
|
|
|
|
|
|
.centered-page {
|
2024-01-07 22:33:22 +01:00
|
|
|
display: flex;
|
2024-01-08 01:23:05 +01:00
|
|
|
// visibility: hidden;
|
2024-01-07 22:33:22 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: space($page-margin);
|
2024-01-08 16:42:21 +01:00
|
|
|
background-color: $color-border-soft;
|
2024-01-07 22:33:22 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.centered-page__modal {
|
2024-01-07 01:04:28 +01:00
|
|
|
@extend %nav-all;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
position: relative;
|
2024-01-07 22:33:22 +01:00
|
|
|
margin: auto;
|
|
|
|
flex: 1 1 100%;
|
|
|
|
max-width: space(math.div($base-height*4, 3))dp;
|
2024-01-07 01:04:28 +01:00
|
|
|
width: 100%;
|
2024-01-07 22:33:22 +01:00
|
|
|
height: 100%;
|
2024-01-07 01:04:28 +01:00
|
|
|
background: $color-bg-shadow-2;
|
2024-01-07 22:33:22 +01:00
|
|
|
border-radius: $border-radius-modal;
|
2024-01-08 01:23:05 +01:00
|
|
|
border-color: $color-bg-shadow;
|
2024-01-07 22:33:22 +01:00
|
|
|
border-width: space(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
.centered-page__modal panels {
|
|
|
|
flex: 1 1 100%;
|
2024-01-07 01:04:28 +01:00
|
|
|
}
|