some ui bug fixes

This commit is contained in:
zzossig 2020-01-26 17:48:03 +09:00
parent 4663bd7e4f
commit 3f5db9b441
3 changed files with 22 additions and 6 deletions

View File

@ -26,10 +26,10 @@
} }
&__slide-down { &__slide-down {
// svg { svg {
// margin: auto; margin: auto;
// display: block; display: block;
// } }
@include themify($themes) { @include themify($themes) {
background-color: themed('navbar-background-color'); background-color: themed('navbar-background-color');
@ -188,7 +188,9 @@
@include justify-content(center); @include justify-content(center);
@include no-select; @include no-select;
@include themify($themes) { @include themify($themes) {
color: themed('navbar-title-color'); color: themed('navbar-title-color');
border-top: 1px solid transparent;
border-bottom: 1px solid themed('navbar-border-bottom-color');
@include on-event { @include on-event {
color: themed('navbar-title-hover-color'); color: themed('navbar-title-hover-color');
background-color: themed('navbar-menu-hover-background-color'); background-color: themed('navbar-menu-hover-background-color');

View File

@ -540,4 +540,18 @@ li .highlight > .chroma {
.lnt:not(:first-child) { .lnt:not(:first-child) {
padding: 0 0.3rem; padding: 0 0.3rem;
} }
}
td {
code {
padding: 2px 7px !important;
}
}
table:not(.lntable) {
td {
code {
padding: 2px 7px !important;
}
}
} }