30 lines
448 B
CSS
30 lines
448 B
CSS
.root {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
}
|
|
|
|
.title {
|
|
color: light-dark(var(--mantine-color-black), var(--mantine-color-white));
|
|
font-family:
|
|
Greycliff CF,
|
|
var(--mantine-font-family);
|
|
}
|
|
|
|
|
|
.mobileImage {
|
|
@media (min-width: 48em) {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.desktopImage {
|
|
object-fit: cover;
|
|
width: 100%;
|
|
height: 100%;
|
|
@media (max-width: 47.99em) {
|
|
display: none;
|
|
}
|
|
}
|
|
|