mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 04:53:40 +00:00
* fix Tor logs actually fetching od logs * chore: update to Angular 18 * chore: update to Angular 19 * bump patchDB * chore: update Angular * chore: fix setup-wizard success page * chore: fix * chore: fix * chore: fix * chore: fix --------- Co-authored-by: Matt Hill <mattnine@protonmail.com> Co-authored-by: Aiden McClelland <me@drbonez.dev>
69 lines
1.0 KiB
SCSS
69 lines
1.0 KiB
SCSS
@use '@taiga-ui/core/styles/taiga-ui-local' as taiga;
|
|
|
|
::ng-deep html,
|
|
::ng-deep body,
|
|
tui-root {
|
|
height: 100%;
|
|
margin: 0;
|
|
color: var(--tui-text-primary);
|
|
}
|
|
|
|
main {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
background: var(--tui-background-accent-opposite-hover);
|
|
}
|
|
|
|
.logo {
|
|
width: 6rem;
|
|
margin-bottom: -2rem;
|
|
z-index: 1;
|
|
}
|
|
|
|
.card {
|
|
max-width: min(30rem, 90vw);
|
|
}
|
|
|
|
.header {
|
|
position: relative;
|
|
display: flex;
|
|
flex-direction: column;
|
|
text-align: center;
|
|
padding-top: 0.25rem;
|
|
margin-bottom: -2rem;
|
|
}
|
|
|
|
.back {
|
|
position: absolute;
|
|
top: 1rem;
|
|
}
|
|
|
|
.pages {
|
|
display: flex;
|
|
align-items: center;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.options {
|
|
@include taiga.transition(margin);
|
|
|
|
min-width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 1.25rem;
|
|
padding: 1rem;
|
|
box-sizing: border-box;
|
|
|
|
&_selected {
|
|
margin-left: -100%;
|
|
}
|
|
}
|
|
|
|
[tuiCell]:not(:last-of-type) {
|
|
box-shadow: 0 calc(0.5rem + 1px) 0 -0.5rem var(--tui-border-normal);
|
|
}
|
|
|