mirror of https://github.com/ghostfolio/ghostfolio
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.
42 lines
569 B
42 lines
569 B
:host {
|
|
display: block;
|
|
}
|
|
|
|
.budget-month-input {
|
|
max-width: 11rem;
|
|
}
|
|
|
|
.budget-actions {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem;
|
|
}
|
|
|
|
.budget-summary {
|
|
display: grid;
|
|
gap: 1rem;
|
|
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
|
|
}
|
|
|
|
.budget-table-wrapper {
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.budget-table {
|
|
min-width: 56rem;
|
|
}
|
|
|
|
.budget-table .mat-column-actions {
|
|
white-space: nowrap;
|
|
width: 6rem;
|
|
}
|
|
|
|
.budget-action-button {
|
|
height: 2.25rem;
|
|
line-height: 2.25rem;
|
|
width: 2.25rem;
|
|
}
|
|
|
|
.budget-action-button ion-icon {
|
|
font-size: 1.125rem;
|
|
}
|
|
|