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

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