You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-09 09:01:24 +13:00
56 lines
679 B
SCSS
56 lines
679 B
SCSS
@import '../../sass/variables';
|
|
|
|
.row {
|
|
cursor: pointer;
|
|
}
|
|
|
|
.getting-started {
|
|
position: relative;
|
|
.close {
|
|
position: absolute;
|
|
top: 0px;
|
|
right: 0px;
|
|
}
|
|
.card-body {
|
|
padding: 0
|
|
}
|
|
}
|
|
|
|
.budget {
|
|
.hidden {
|
|
display: none
|
|
}
|
|
.expanded .hidden {
|
|
display: flex
|
|
}
|
|
.amount {
|
|
text-align: right;
|
|
}
|
|
}
|
|
|
|
.recent {
|
|
.amount {
|
|
text-align: right;
|
|
}
|
|
.amount.negative {
|
|
color: $negative;
|
|
}
|
|
.hidden {
|
|
display: none
|
|
}
|
|
.expanded .hidden {
|
|
display: flex
|
|
}
|
|
}
|
|
|
|
@media (max-width: 767px) {
|
|
.card {
|
|
.container-fluid {
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
}
|
|
.card-body {
|
|
padding: 0.5rem;
|
|
}
|
|
} |