1
0
Fork 0

feat: Added parsing of details and table with details to dashboard

This commit is contained in:
Benedikt Bastin 2021-01-17 19:56:30 +01:00
parent fe6cfaf8b6
commit bac8cac1b7
3 changed files with 138 additions and 3 deletions

View file

@ -45,6 +45,10 @@ sup {
figure {
max-width: 100%;
}
figure img {
width: 90%;
height: auto;
@ -57,3 +61,28 @@ figure figcaption {
figure figcaption .ref {
font-weight: bolder;
}
figure {
overflow-y: auto;
}
table {
border-collapse: collapse;
}
table td, table th {
padding: .2em .5em;
border: 1px solid #333333;
}
table th {
background: #BADBFF;
}
table tbody th {
text-align: left;
}
table td.number {
text-align: right;
}