aboutsummaryrefslogtreecommitdiffstats
path: root/src/css/imports/_tables.css
blob: ca6ca41dcc0324b4bbe8eb924d9f386a2dc37b26 (plain)
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
30
table
{
  border-radius: var(--border-radius);
  overflow: hidden;
}

td, th {
  padding: $spacing-medium;
}

th:not(:first-child), td:not(:first-child) {
  text-align: right;
}

th {
  color: var(--grey-3);
  font-weight: 700;
  white-space: nowrap;
   {
    white-space: wrap;
  }
}

tr th {
  text-align: center;
}

tbody tr:nth-child(even) {
  background-color: var(--grey-1);
}