break expense component into smaller pieces
This commit is contained in:
parent
e127b8ec45
commit
ca8aad7f22
17 changed files with 135 additions and 355 deletions
|
|
@ -0,0 +1,20 @@
|
|||
.expense-form-container {
|
||||
display: grid;
|
||||
|
||||
mat-form-field {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 550px) {
|
||||
.expense-form-container {
|
||||
grid-template-columns: 1fr 1fr;
|
||||
gap: 1rem;
|
||||
}
|
||||
}
|
||||
|
||||
@media (min-width: 800px) {
|
||||
.expense-form-container {
|
||||
grid-template-columns: 1fr 1fr 1fr;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue