24 lines
345 B
SCSS
24 lines
345 B
SCSS
@use "variables";
|
|
|
|
.expense-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
|
|
mat-card {
|
|
max-width: variables.$wide-screen;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
mat-card-header {
|
|
padding-bottom: 1rem;
|
|
|
|
.expense-header {
|
|
width: 100%;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
}
|
|
}
|