fix: shell div the colors in the dark theme

This commit is contained in:
古大羊 2024-05-14 21:25:33 +08:00
parent 6a8b695c00
commit c83c8c56bb

View File

@ -14,15 +14,23 @@
width: 100%;
}
:root.dark {
.shell {
background: rgba(30, 30, 30, 0.6);
}
.shell__text {
color: white;
}
}
.shell__divider{
background: rgba(127, 127, 127, 0.3);
width: 100%;
height: 8px;
}
.shell__divider:hover {
background: rgba(127, 127, 127, 0.9);
}
.shell__content {