20 lines
352 B
SCSS
20 lines
352 B
SCSS
@import '../../scss/variables.scss';
|
|
|
|
.account-overview {
|
|
display: flex;
|
|
border: 1px solid $color-grey;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
text-align: center;
|
|
margin: 1rem 0;
|
|
padding: 1rem;
|
|
background: $color-alt;
|
|
|
|
.funds {
|
|
display: flex;
|
|
justify-content: center;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
}
|
|
}
|