BOD-63 Added CSS styling to prevent overflow. Added totals calculation to invoice screen. Updated packages.
This commit is contained in:
40
client/src/components/invoice-form/invoice-form.styles.scss
Normal file
40
client/src/components/invoice-form/invoice-form.styles.scss
Normal file
@@ -0,0 +1,40 @@
|
||||
.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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user