fix: DebugBar CSS for daisyUI

This commit is contained in:
kenjis 2024-07-11 17:54:59 +09:00
parent 517aa3311b
commit 77609b1c9a
No known key found for this signature in database
GPG Key ID: BD254878922AF198
2 changed files with 10 additions and 0 deletions

View File

@ -95,6 +95,7 @@
}
h2 {
font-weight: bold;
font-size: $base-size;
margin: 0;
padding: 5px 0 10px 0;
@ -292,6 +293,8 @@
// The tabs container
.tab {
height: fit-content;
text-align: left;
bottom: 35px;
display: none;
left: 0;
@ -306,6 +309,8 @@
// The "Timeline" tab
.timeline {
position: static;
display: table;
margin-left: 0;
width: 100%;

View File

@ -60,6 +60,7 @@
margin-right: 5px;
}
#debug-bar h2 {
font-weight: bold;
font-size: 16px;
margin: 0;
padding: 5px 0 10px 0;
@ -213,6 +214,8 @@
white-space: nowrap;
}
#debug-bar .tab {
height: fit-content;
text-align: left;
bottom: 35px;
display: none;
left: 0;
@ -225,6 +228,8 @@
z-index: 9999;
}
#debug-bar .timeline {
position: static;
display: table;
margin-left: 0;
width: 100%;
}