This commit is contained in:
eric
2026-06-07 23:57:52 -05:00
parent 6d479c9f94
commit 47b1ae8514
56 changed files with 4163 additions and 874 deletions

View File

@@ -148,7 +148,10 @@ html {
/* ==================== Right Item ==================== */
.right-item {
display: flex;
flex-direction: column;
height: 100%;
min-height: 0;
border-radius: 15px;
position: relative;
overflow: hidden;
@@ -158,6 +161,13 @@ html {
background: white;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
.right-item-body {
position: relative;
flex: 1 1 auto;
min-height: 0;
overflow: hidden;
}
.dark .right-item {
background: #1f2937;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.05);
@@ -170,6 +180,7 @@ html {
.right-item-header {
width: 100%;
height: 38px;
flex: 0 0 38px;
font-size: 14px;
font-weight: 600;
letter-spacing: 0.5px;
@@ -183,6 +194,7 @@ html {
@media (min-width: 640px) {
.right-item-header {
height: 42px;
flex-basis: 42px;
font-size: 15px;
}
}