1
4
Fork 1
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
509 B
SCSS

table {
clear: both;
thead {
display: flex;
flex-direction: column;
th {
width: 100%;
padding: .5em;
font-size: 1.5em;
}
th:nth-child(2) {
padding: 0;
}
}
tbody {
display: flex;
flex-direction: column;
background-color: $secondary;
border: 1px solid $border;
border-radius: .25rem;
padding: 1em .7em;
tr {
width: 100%;
display: flex;
justify-content: space-between;
}
td {
padding: .65em .8em;
}
td:nth-child(2) { text-align: right }
}
}