aboutsummaryrefslogtreecommitdiff
path: root/_scss/components/theme/_table.scss
blob: 7af38d5210453388cd283d41fe12fb17960f5c9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
table {
  border-spacing: 0;
  width: 100%;
}

td,
th {
  border-bottom: .1rem solid $color-quinary;
  padding: 1.2rem 1.5rem;
  text-align: left;

  &:first-child {
    padding-left: 0;
  }

  &:last-child {
    padding-right: 0;
  }
}