You've already forked openaccounting-web
mirror of
https://github.com/openaccounting/oa-web.git
synced 2025-12-09 09:01:24 +13:00
44 lines
514 B
SCSS
44 lines
514 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
|
||
|
|
}
|
||
|
|
}
|