dashboard
repositories
filestore
activity
search
login
external-software
/
github_gohugo_theme_anatole
mirror of
https://github.com/lxndrblz/anatole.git
summary
commits
tree
docs
forks
compare
blame
|
history
|
raw
feat: add general styling for tables
John Thompson
24.00.2024
4eee0da80251b046049c3806da9ef4dc90be6a07
[external-software/github_gohugo_theme_anatole.git]
/
assets
/
scss
/
partials
/
vendors
/
_table.scss
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');
}
}