mirror of
https://github.com/ascribe/onion.git
synced 2024-12-23 01:39:36 +01:00
28 lines
577 B
SCSS
28 lines
577 B
SCSS
@media print {
|
|
@page {
|
|
margin: 1.2cm;
|
|
}
|
|
|
|
.ascribe-default-app {
|
|
padding: 0 !important;
|
|
}
|
|
|
|
// Replace navbar header with ascribe logo
|
|
.ascribe-print-header {
|
|
border-bottom: 1px solid rgba(0, 60, 105, 0.1);
|
|
font-size: 1.2em;
|
|
margin: 0.5em 0;
|
|
text-align: center;
|
|
}
|
|
|
|
// Force left and right columns
|
|
.ascribe-print-col-left {
|
|
width: 50% !important;
|
|
float: left !important;
|
|
}
|
|
.ascribe-print-col-right {
|
|
width: 50% !important;
|
|
float: right !important;
|
|
}
|
|
}
|