mirror of
https://github.com/10h30/yeuchaybo.git
synced 2026-07-11 18:56:16 +09:00
36 lines
475 B
SCSS
36 lines
475 B
SCSS
/* ## Tables
|
|
--------------------------------------------- */
|
|
|
|
table {
|
|
width: 100%;
|
|
margin-bottom: 40px;
|
|
border-spacing: 0;
|
|
border-collapse: collapse;
|
|
line-height: $line-height--big;
|
|
word-break: break-all;
|
|
}
|
|
|
|
tbody {
|
|
border-bottom: $border;
|
|
}
|
|
|
|
td {
|
|
padding: 6px;
|
|
border-top: $border;
|
|
text-align: left;
|
|
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
}
|
|
|
|
th {
|
|
padding: 0 6px;
|
|
font-weight: $font-weight--regular;
|
|
text-align: left;
|
|
|
|
&:first-child {
|
|
padding-left: 0;
|
|
}
|
|
}
|