Files
bodyshop/client/src/components/labor-allocations-table/labor-allocations-table.styles.scss
2021-01-08 16:16:05 -08:00

31 lines
477 B
SCSS

.labor-allocations-table {
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;
}
}