mirror of https://github.com/lxndrblz/anatole.git

lxndrblz
24.03.2024 4abee2b3974b4a7a2a59d2cbce8fc6cd9ce515b6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
table {
  display: table;
  width: 80%;
  border-collapse: collapse;
}
 
tr {
  display: table-row;
}
 
th,
td {
  display: table-cell;
  padding: 8px;
  @include themed() {
    border: t('border');
  }
}