anatole-porzh/assets/scss/partials/vendors/_table.scss
2025-10-09 10:23:36 +02:00

20 lines
253 B
SCSS

@use 'modules/color_theme' as color;
table {
display: table;
width: 80%;
border-collapse: collapse;
}
tr {
display: table-row;
}
th,
td {
display: table-cell;
padding: 8px;
@include color.themed() {
border: color.t('border');
}
}