2
0
mirror of synced 2025-02-24 17:08:11 +00:00
blog/themes/embark/source/css/03-elements/_elements.tables.scss
Jakub Sokołowski c7acd418c2
first commit
Signed-off-by: Jakub Sokołowski <jakub@status.im>
2020-06-18 12:29:57 +02:00

25 lines
411 B
SCSS

table {
width: 100%;
table-layout: fixed;
border: $border-width solid $border-color;
border-collapse: collapse;
word-wrap: break-word;
margin-top: get-spacing-stack(m);
}
th,
td {
padding: get-spacing-inset(s);
border-left: $border-width solid $border-color;
border-top: $border-width solid $border-color;
&:first-child {
border-left: 0;
}
}
thead td,
thead th {
border-top: 0;
}