1
0
mirror of https://github.com/mgerb/go-discord-bot synced 2026-01-10 09:02:49 +00:00
Files
go-discord-bot/client/app/scss/table.scss

24 lines
260 B
SCSS

.table {
width: 100%;
thead {
text-align: left;
}
td,
th {
padding: 10px 5px;
}
&--fixed {
table-layout: fixed;
}
}
.table--ellipsis {
td,
th {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
}