feat: homepage styling improvements

This commit is contained in:
SethBurkart123
2025-06-18 14:14:48 +10:00
parent 566f326dce
commit c4140a2a9d
+14 -3
View File
@@ -926,6 +926,7 @@ div > ol:has(.uiFileHandlerWrapper) {
.notices-container { .notices-container {
input { input {
border: none; border: none;
color: var(--text-color) !important;
&:hover { &:hover {
border: none; border: none;
@@ -3643,8 +3644,11 @@ body {
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
} }
.dark .notice-unified-content {
color: white;
}
.notice-unified-content { .notice-unified-content {
// Override any conflicting .notice styles - unified for both states
h1, h2, h3, h4, h5, h6 { h1, h2, h3, h4, h5, h6 {
margin: 0 !important; margin: 0 !important;
padding: 0 !important; padding: 0 !important;
@@ -3763,15 +3767,16 @@ body {
flex: 1; flex: 1;
} }
.notice-close-btn { button.notice-close-btn {
position: absolute !important; position: absolute !important;
font-size: 20px !important;
top: 12px; top: 12px;
right: 12px; right: 12px;
background: var(--background-secondary); background: var(--background-secondary);
border: none; border: none;
width: 32px; width: 32px;
height: 32px; height: 32px;
border-radius: 50%; border-radius: 50% !important;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@@ -3935,3 +3940,9 @@ body {
font-size: 13px; font-size: 13px;
} }
} }
h2.home-subtitle {
margin: 20px;
font-size: 20px;
font-weight: 400;
}