feat: navbar logo and title can be configured

chore: add logos to static and update compiled css
This commit is contained in:
Xin
2023-08-20 20:34:01 +01:00
parent 0360a93e99
commit 80659b4933
6 changed files with 46 additions and 7 deletions

View File

@ -2122,6 +2122,10 @@ video {
margin-left: 1rem;
}
.ml-auto {
margin-left: auto;
}
.mr-1 {
margin-right: 0.25rem;
}
@ -3412,6 +3416,14 @@ body {
}
}
:is(html[class~="dark"] .dark\:block) {
display: block;
}
:is(html[class~="dark"] .dark\:hidden) {
display: none;
}
:is(html[class~="dark"] .dark\:border-blue-200\/30) {
border-color: rgb(191 219 254 / 0.3);
}