mirror of
https://github.com/gwdevhub/Daybreak.git
synced 2026-07-21 01:59:49 +00:00
38 lines
623 B
CSS
38 lines
623 B
CSS
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-content: center;
|
|
align-items: center;
|
|
color: var(--neutral-foreground-rest);
|
|
}
|
|
|
|
.backdrop-panel {
|
|
padding: 20px;
|
|
width: 100%;
|
|
max-width: 800px;
|
|
}
|
|
|
|
h3 {
|
|
font-size: var(--font-size-large);
|
|
}
|
|
|
|
p {
|
|
font-size: var(--font-size-medium);
|
|
}
|
|
|
|
.button-group {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
align-items: center;
|
|
align-content: center;
|
|
justify-content: center;
|
|
column-gap: 30%;
|
|
}
|
|
|
|
::deep .button-group * {
|
|
font-size: var(--font-size-medium) !important;
|
|
}
|