78 lines
1.7 KiB
SCSS
78 lines
1.7 KiB
SCSS
// ================================================================================================
|
|
// File Name: app-invoice-print.scss
|
|
// Description: Invoice Layout page layouts SCSS.
|
|
// ----------------------------------------------------------------------------------------------
|
|
// Item Name: Vuexy HTML Admin Template
|
|
// Version: 1.0
|
|
// Author: PIXINVENT
|
|
// Author URL: http://www.themeforest.net/user/pixinvent
|
|
// ================================================================================================
|
|
|
|
@import '../bootstrap-extended/include'; // Bootstrap includes
|
|
|
|
html,
|
|
body {
|
|
background: $white !important;
|
|
}
|
|
|
|
.invoice-print {
|
|
min-width: 768px !important;
|
|
font-size: 15px !important;
|
|
|
|
.invoice-date-wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
.invoice-date-title {
|
|
width: 8rem;
|
|
}
|
|
}
|
|
|
|
i,
|
|
svg {
|
|
fill: $body-color !important;
|
|
}
|
|
|
|
.invoice-total-wrapper {
|
|
width: 100%;
|
|
max-width: 12rem;
|
|
.invoice-total-item {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
.invoice-total-title {
|
|
// width: 92px;
|
|
margin-bottom: 0.35rem;
|
|
}
|
|
.invoice-total-amount {
|
|
margin-bottom: 0.35rem;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.invoice-print * {
|
|
border-color: rgba($color: $black, $alpha: 0.5) !important;
|
|
color: $body-color !important;
|
|
}
|
|
|
|
// style for print screen
|
|
@media print {
|
|
.invoice-print {
|
|
padding: 0px !important;
|
|
}
|
|
.invoice-header {
|
|
border-bottom: 1px solid $border-color;
|
|
flex-direction: row !important;
|
|
margin-bottom: 3rem;
|
|
padding-right: 5rem;
|
|
}
|
|
.table-responsive {
|
|
overflow-x: hidden;
|
|
}
|
|
hr {
|
|
display: none;
|
|
}
|
|
}
|