Fix <pre> styling

This commit is contained in:
Jeremy Stretch 2024-01-16 16:18:47 -05:00
parent 94e6dd6752
commit 2ee68d3428
3 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@ -35,6 +35,6 @@ pre.change-diff {
// <pre> elements displayed with a border // <pre> elements displayed with a border
pre.block { pre.block {
padding: $spacer; padding: $spacer;
border: 1px; border: 1px solid $border-color;
border-radius: $border-radius; border-radius: $border-radius;
} }

View File

@ -1,3 +1,9 @@
// Restore default foreground & background colors for <pre> blocks
pre {
background-color: transparent;
color: inherit;
}
// Buttons // Buttons
.btn { .btn {
// Tabler sets display: flex // Tabler sets display: flex