revite/src/pages/home/Home.module.scss

33 lines
483 B
SCSS
Raw Normal View History

2021-06-19 15:24:11 -04:00
.home {
user-select: none;
h3 {
margin: 1em 0;
font-size: 48px;
text-align: center;
img {
height: 36px;
}
}
2021-07-09 11:23:06 -04:00
.actions {
gap: 8px;
width: 240px;
2021-08-17 08:52:02 -04:00
2021-06-19 15:24:11 -04:00
margin: auto;
2021-07-09 11:23:06 -04:00
display: flex;
width: fit-content;
2021-08-17 08:52:02 -04:00
align-items: stretch;
2021-07-09 11:23:06 -04:00
flex-direction: column;
2021-08-17 08:52:02 -04:00
a {
width: 100%;
}
2021-06-19 15:24:11 -04:00
}
}
[data-light="true"] .home svg {
filter: invert(100%);
}