2024-01-07 22:33:22 +01:00
|
|
|
@use 'sass:math';
|
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
|
|
|
display: flex;
|
|
|
|
position: relative;
|
2024-01-07 22:33:22 +01:00
|
|
|
flex: 1 1 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
flex-direction: column;
|
2024-01-07 01:04:28 +01:00
|
|
|
width: 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
max-width: space($base-modal-max-width);
|
2024-01-07 22:33:22 +01:00
|
|
|
height: 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
margin: auto;
|
|
|
|
border-width: $border-width-thickness;
|
2024-01-07 22:33:22 +01:00
|
|
|
border-radius: $border-radius-modal;
|
2024-01-28 16:50:51 +01:00
|
|
|
border-color: $color-border;
|
2024-04-21 17:54:48 +02:00
|
|
|
background: $color-modal-overlay;
|
2024-01-07 22:33:22 +01:00
|
|
|
|
2024-01-22 17:43:21 +01:00
|
|
|
> .tabs {
|
|
|
|
display: flex;
|
|
|
|
position: relative;
|
|
|
|
flex: 1 1 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
flex-direction: column;
|
2024-01-22 17:43:21 +01:00
|
|
|
width: 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
max-width: space($base-modal-max-width);
|
2024-01-22 17:43:21 +01:00
|
|
|
height: 100%;
|
2024-04-21 17:54:48 +02:00
|
|
|
margin: auto;
|
2024-01-22 17:43:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
panels {
|
|
|
|
flex: 1 1 100%;
|
|
|
|
}
|
2024-01-07 01:04:28 +01:00
|
|
|
}
|
2024-03-03 21:57:19 +01:00
|
|
|
|
|
|
|
.centered-page__controls {
|
|
|
|
display: flex;
|
|
|
|
position: absolute;
|
2024-04-21 17:54:48 +02:00
|
|
|
bottom: space(24);
|
|
|
|
flex-direction: row;
|
2024-03-03 21:57:19 +01:00
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
width: 100%;
|
|
|
|
max-width: space($base-modal-max-width);
|
2024-04-21 17:54:48 +02:00
|
|
|
height: auto;
|
|
|
|
margin: 0 auto;
|
2024-03-03 21:57:19 +01:00
|
|
|
|
|
|
|
> label {
|
|
|
|
@extend %label-sm;
|
|
|
|
display: inline-block;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: space-between;
|
|
|
|
width: auto;
|
|
|
|
height: space(24);
|
|
|
|
|
|
|
|
&:not(:last-child) {
|
|
|
|
margin-right: space(40);
|
|
|
|
}
|
|
|
|
|
|
|
|
> span:first-child {
|
|
|
|
margin-right: space(4);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|