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.

35 lines
461 B

3 years ago
.app {
3 years ago
display: flex;
3 years ago
flex-direction: column;
align-items: center;
// justify-content: space-around;
font-size: calc(10px + 2vmin);
color: white;
3 years ago
3 years ago
h1 {
margin-top: 2.5vmin;
margin-bottom: 1vmin;
3 years ago
}
3 years ago
}
3 years ago
3 years ago
button {
cursor: pointer;
3 years ago
}
3 years ago
.funds,
.transactions {
display: grid;
grid-template-columns: repeat(3, 1fr);
// height: 50vh;
3 years ago
}
3 years ago
3 years ago
.totals {
z-index: 9;
.above {
margin-top: 5ch;
}
.bottom {
margin-bottom: 5ch;
3 years ago
}
}