41 lines
680 B
SCSS
41 lines
680 B
SCSS
.invoice-form-wrapper {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: left;
|
|
}
|
|
|
|
.invoice-form-totals {
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
& > * {
|
|
padding: 5px;
|
|
}
|
|
}
|
|
|
|
.invoice-form-invoice-details {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex-wrap: wrap;
|
|
& > * {
|
|
padding: 5px;
|
|
}
|
|
}
|
|
|
|
.invoice-form-lines-wrapper {
|
|
border: 3px ridge rgba(28, 110, 164, 0.24);
|
|
border-radius: 4px;
|
|
}
|
|
|
|
.invoice-form-line {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: flex-start;
|
|
justify-content: space-around;
|
|
border-bottom: 2px dashed rgba(7, 7, 7, 0.4);
|
|
F & > * {
|
|
margin: 5px;
|
|
}
|
|
}
|