Files
GhomandArchie 291dcf9515 Merge pull request #10575 from Arturlang/TGUIs_Nexties
[TESTMERGE] Properly working TGUI Next
2021-01-04 19:47:54 -03:00

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;
}