summaryrefslogtreecommitdiffstats
path: root/front/odiparpack/app/styles/layout/_tables.scss
blob: 8287bcf6d579d90c037973fc9b714a6e9a3fbb68 (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
31
32
table {
  border-collapse: collapse;
  margin: $base-spacing 0;
  text-align: left;
  width: 100%;
}

thead {
  line-height: $heading-line-height;
  vertical-align: bottom;
}

tbody {
  vertical-align: top;
}

tr {
  border-bottom: $base-border;
}

th {
  font-weight: 600;
}

th,
td {
  padding: $small-spacing $base-spacing;
  @media screen and (max-width: 1400px) {
    padding: $small-spacing;
    padding-left: $base-spacing
  }
}