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.
19 lines
238 B
19 lines
238 B
//
|
|
// 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;
|
|
}
|
|
}
|