Files
bodyshop/client/src/components/job-totals-table/job-totals-table.styles.scss

39 lines
603 B
SCSS

.job-totals-half {
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
table {
border: 1px solid #ccc;
border-collapse: collapse;
margin: 0;
padding: 0;
width: 80%;
table-layout: fixed;
}
table tr {
//background-color: #f8f8f8;
border: 1px solid #ddd;
padding: 0.35em;
}
table th,
table td {
padding: 0.625em;
//text-align: center;
}
table td.currency {
text-align: right;
}
}
.job-totals-stats {
margin: 1rem;
display: flex;
width: 100%;
//flex-direction: column;
justify-content: space-evenly;
}