_invoice.scss 238 B

12345678910111213141516171819
  1. //
  2. // Pages: Invoice
  3. //
  4. .invoice {
  5. background-color: $white;
  6. border: 1px solid $card-border-color;
  7. position: relative;
  8. }
  9. .invoice-title {
  10. margin-top: 0;
  11. }
  12. @include dark-mode () {
  13. .invoice {
  14. background-color: $dark;
  15. }
  16. }