mirror of
https://github.com/zhigang1992/probot.github.io.git
synced 2026-05-30 17:33:52 +08:00
40 lines
574 B
SCSS
40 lines
574 B
SCSS
// stylelint-disable selector-no-type, selector-max-compound-selectors
|
|
|
|
.data-table {
|
|
width: 100%;
|
|
margin-top: $spacer-3;
|
|
border-collapse: collapse;
|
|
border: $border;
|
|
box-shadow: 0 1px 1px rgba($black, 0.05);
|
|
|
|
th {
|
|
font-weight: 400;
|
|
text-align: left;
|
|
}
|
|
|
|
td,
|
|
th {
|
|
padding: $spacer-3;
|
|
border-right: $border;
|
|
border-bottom: $border;
|
|
}
|
|
|
|
tbody {
|
|
th {
|
|
width: 25%;
|
|
}
|
|
|
|
th,
|
|
td {
|
|
border-bottom-color: $border-gray;
|
|
}
|
|
|
|
tr:last-child {
|
|
th,
|
|
td {
|
|
border-bottom: $border;
|
|
}
|
|
}
|
|
}
|
|
}
|