blob: e97e447c5cd830e0404fe7bd313e61b055c84470 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
// stylelint-disable selector-max-type
.markdown-body .csv-data {
td,
th {
// stylelint-disable-next-line primer/spacing
padding: 5px;
overflow: hidden;
font-size: $font-size-small;
line-height: $lh-condensed-ultra;
text-align: left;
white-space: nowrap;
}
.blob-num {
// stylelint-disable-next-line primer/spacing
padding: 10px $spacer-2 9px;
text-align: right;
background: $bg-white;
border: 0;
}
tr { border-top: 0; }
th {
font-weight: $font-weight-bold;
background: $bg-gray;
border-top: 0;
}
}
|