Update table styling

This commit is contained in:
2020-12-06 16:26:07 +01:00
parent e7c4a9e3dd
commit a42ca8aa17
+28
View File
@@ -367,4 +367,32 @@ svg {
svg {
font-size: 1.5rem;
}
}
table {
width: 100%;
padding: 10px 10px 10px 20px;
border-radius: 8px;
font-size: .95rem;
overflow: auto;
background: $light-background-secondary;
th {
padding: 8px 0px;
}
td {
padding: 6px 0px;
border-top: 1px solid $light-color-secondary;
}
.dark-theme & {
background: $dark-background-secondary;
td {
border-top-color: $dark-color-secondary;
}
}
}