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

58 lines
1.2 KiB
SCSS
Raw Normal View History

2021-06-19 15:24:11 -04:00
.home {
2021-12-23 08:16:43 -05:00
height: 100%;
2021-06-19 15:24:11 -04:00
user-select: none;
position: relative;
2021-06-19 15:24:11 -04:00
.homeScreen {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 95%;
padding: 12px;
h3 {
margin: 20px 0;
font-size: 48px;
text-align: center;
2021-06-19 15:24:11 -04:00
img {
height: 36px;
}
2021-06-19 15:24:11 -04:00
}
a {
font-size: 13px;
}
2021-08-17 08:52:02 -04:00
.actions {
//grid-template-columns: repeat(2, 300px);
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
grid-column: span 2;
gap: 16px;
//margin: auto;
display: grid;
width: fit-content;
align-items: stretch;
flex-direction: column;
margin-bottom: 20px;
2021-08-17 08:52:02 -04:00
a {
width: 100%;
&:nth-child(4) {
margin-bottom: 20px;
}
div {
margin: 0;
}
}
2021-08-17 08:52:02 -04:00
}
2021-06-19 15:24:11 -04:00
}
}
[data-light="true"] .home svg {
filter: invert(100%);
}