You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ghostfolio/apps/client/src/app/pages/register/register-page.scss

38 lines
656 B

:host {
display: block;
.button-container {
.mat-mdc-outlined-button {
background-color: var(--light-background);
}
}
.intro-container {
margin-top: -5rem;
.intro-inner-container {
aspect-ratio: 16 / 9;
max-height: 66vh;
.intro {
background-image: url('/assets/intro.jpg');
background-position: top left;
background-repeat: no-repeat;
background-size: contain;
}
}
}
}
:host-context(.is-dark-theme) {
.button-container {
.mat-mdc-outlined-button {
background-color: var(--dark-background);
}
}
.intro-container {
display: none;
}
}