cash-stacks/frontend/src/app.scss

33 lines
435 B
SCSS
Raw Normal View History

2021-07-13 23:47:28 +00:00
// @include './form.scss';
2021-04-15 02:04:37 +00:00
.app {
2021-07-13 23:47:28 +00:00
display: grid;
grid-template: 1fr / auto 1fr auto;
2021-04-15 02:04:37 +00:00
align-items: center;
font-size: calc(10px + 2vmin);
color: white;
2021-03-17 02:15:33 +00:00
2021-04-15 02:04:37 +00:00
h1 {
margin-top: 2.5vmin;
margin-bottom: 1vmin;
2021-04-11 21:42:56 +00:00
}
2021-04-15 02:04:37 +00:00
}
2021-03-17 02:15:33 +00:00
2021-04-15 02:04:37 +00:00
.funds,
.transactions {
display: grid;
grid-template-columns: repeat(3, 1fr);
// height: 50vh;
2021-04-11 21:42:56 +00:00
}
2021-04-11 21:57:19 +00:00
2021-04-15 02:04:37 +00:00
.totals {
z-index: 9;
.above {
margin-top: 5ch;
}
.bottom {
margin-bottom: 5ch;
2021-04-11 21:57:19 +00:00
}
}