diff --git a/themes/maik-blog/assets/scss/_main.scss b/themes/maik-blog/assets/scss/_main.scss index 0a9a89c..a1d6d79 100644 --- a/themes/maik-blog/assets/scss/_main.scss +++ b/themes/maik-blog/assets/scss/_main.scss @@ -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; + } + + } } \ No newline at end of file