Style top bar and add dark theme logo toggle
This commit is contained in:
parent
9638f5d95d
commit
845c50f891
1 changed files with 24 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
.header-top-left {
|
||||||
|
display: flex;
|
||||||
|
align-items: baseline;
|
||||||
|
}
|
||||||
|
#main .header-top .logo img {
|
||||||
|
height: 32px;
|
||||||
|
}
|
||||||
.form-group.d-inline {
|
.form-group.d-inline {
|
||||||
margin-bottom: 0;
|
margin-bottom: 0;
|
||||||
}
|
}
|
||||||
|
@ -9,3 +16,20 @@
|
||||||
flex-grow: 1;
|
flex-grow: 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[data-bs-theme="light"] {
|
||||||
|
header #logo-dark {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
header #logo-light {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
[data-bs-theme="dark"] {
|
||||||
|
header #logo-light {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
header #logo-dark {
|
||||||
|
display: inline-block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue