75 lines
957 B
SCSS
75 lines
957 B
SCSS
* {
|
|
padding: 0;
|
|
margin: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
body {
|
|
padding: 0 8mm;
|
|
}
|
|
.empty {
|
|
height: 20px;
|
|
}
|
|
.print_view {
|
|
padding: 20px 0;
|
|
|
|
.title {
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 4px;
|
|
|
|
&.t1 {
|
|
font-size: 24px;
|
|
}
|
|
|
|
&.t2 {
|
|
margin-bottom: 15px;
|
|
}
|
|
}
|
|
|
|
.row {
|
|
margin-top: 2px;
|
|
font-size: 12px;
|
|
|
|
&.between {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
|
|
.line {
|
|
margin: 10px 0;
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.table {
|
|
width: 100%;
|
|
|
|
tr {
|
|
width: 100%;
|
|
display: flex;
|
|
|
|
&:not(:last-child) {
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
td {
|
|
flex: 1;
|
|
font-size: 12px;
|
|
|
|
&:nth-child(1) {
|
|
flex: 2;
|
|
}
|
|
|
|
&:not(:first-child) {
|
|
display: flex;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.sku {
|
|
font-size: 10px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|