app-invoice-print.scss 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // ================================================================================================
  2. // File Name: app-invoice-print.scss
  3. // Description: Invoice Layout page layouts SCSS.
  4. // ----------------------------------------------------------------------------------------------
  5. // Item Name: Vuexy HTML Admin Template
  6. // Version: 1.0
  7. // Author: PIXINVENT
  8. // Author URL: http://www.themeforest.net/user/pixinvent
  9. // ================================================================================================
  10. @import '../bootstrap-extended/include'; // Bootstrap includes
  11. html,
  12. body {
  13. background: $white !important;
  14. }
  15. .invoice-print {
  16. min-width: 768px !important;
  17. font-size: 15px !important;
  18. .invoice-date-wrapper {
  19. display: flex;
  20. align-items: center;
  21. .invoice-date-title {
  22. width: 8rem;
  23. }
  24. }
  25. i,
  26. svg {
  27. fill: $body-color !important;
  28. }
  29. .invoice-total-wrapper {
  30. width: 100%;
  31. max-width: 12rem;
  32. .invoice-total-item {
  33. display: flex;
  34. align-items: center;
  35. justify-content: space-between;
  36. .invoice-total-title {
  37. // width: 92px;
  38. margin-bottom: 0.35rem;
  39. }
  40. .invoice-total-amount {
  41. margin-bottom: 0.35rem;
  42. font-weight: 600;
  43. }
  44. }
  45. }
  46. }
  47. .invoice-print * {
  48. border-color: rgba($color: $black, $alpha: 0.5) !important;
  49. color: $body-color !important;
  50. }