mirror of
https://github.com/KabKebab/GS13.git
synced 2026-08-25 14:06:15 +01:00
40 lines
502 B
SCSS
40 lines
502 B
SCSS
.Table {
|
|
display: table;
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.Table--collapsing {
|
|
width: auto;
|
|
}
|
|
|
|
.Table__row {
|
|
display: table-row;
|
|
}
|
|
|
|
.Table__cell {
|
|
display: table-cell;
|
|
padding: 0 3px;
|
|
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
.Table__row--header .Table__cell,
|
|
.Table__cell--header {
|
|
font-weight: bold;
|
|
padding-bottom: 6px;
|
|
}
|
|
|
|
.Table__cell--collapsing {
|
|
width: 1%;
|
|
white-space: nowrap;
|
|
}
|