mirror of
https://github.com/dyzulk/raisen-app.git
synced 2026-01-26 21:32:03 +07:00
20 lines
238 B
SCSS
20 lines
238 B
SCSS
//
|
|
// Pages: Invoice
|
|
//
|
|
|
|
.invoice {
|
|
background-color: $white;
|
|
border: 1px solid $card-border-color;
|
|
position: relative;
|
|
}
|
|
|
|
.invoice-title {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@include dark-mode () {
|
|
.invoice {
|
|
background-color: $dark;
|
|
}
|
|
}
|