mirror of
https://github.com/primer/css.git
synced 2024-12-20 12:42:07 +03:00
28 lines
442 B
SCSS
28 lines
442 B
SCSS
|
// stylelint-disable selector-no-type
|
||
|
.markdown-body .csv-data {
|
||
|
td,
|
||
|
th {
|
||
|
padding: 5px;
|
||
|
overflow: hidden;
|
||
|
font-size: 12px;
|
||
|
line-height: 1;
|
||
|
text-align: left;
|
||
|
white-space: nowrap;
|
||
|
}
|
||
|
|
||
|
.blob-num {
|
||
|
padding: 10px 8px 9px;
|
||
|
text-align: right;
|
||
|
background: $bg-white;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
tr { border-top: 0; }
|
||
|
|
||
|
th {
|
||
|
font-weight: $font-weight-bold;
|
||
|
background: $gray-100;
|
||
|
border-top: 0;
|
||
|
}
|
||
|
}
|