Files
copenlight/styles/_tables.scss
Ivan Carlos de Almeida 6fa41a771d
Some checks failed
Build, Push, Publish / Build & Release (push) Failing after 2s
Sync Repo / sync (push) Failing after 2s
first load
2025-12-16 04:40:00 -03:00

45 lines
702 B
SCSS

/***** Tables *****/
.table {
@include tablet { table-layout: auto; }
width: 100%;
table-layout: fixed;
border-collapse: collapse;
border-spacing: 0;
th,
th a {
color: $secondary-text-color;
font-size: $font-size-small;
text-align: left;
[dir="rtl"] & { text-align: right; }
}
tr {
@include tablet { display: table-row; }
border-bottom: 1px solid $low-contrast-border-color;
display: block;
padding: 20px 0;
}
td {
@include tablet {
display: table-cell;
}
display: block;
}
td, th {
@include desktop {
padding: 20px 30px;
}
@include tablet {
padding: 10px 20px;
height: 60px;
}
}
}