31 lines
477 B
SCSS
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;
|
|
}
|
|
}
|