Update home tab label and card backgrounds

This commit is contained in:
jelveh
2025-12-07 01:14:32 -08:00
parent 94b2af9d88
commit 31460fc70b
2 changed files with 9 additions and 3 deletions

View File

@@ -130,7 +130,7 @@ const TabHome = {
// Recent apps card (rectangle)
h += '<div class="bento-card bento-recent">';
h += '<div class="bento-card-header">';
h += '<h2>Recent Apps</h2>';
h += '<h2>Recently used</h2>';
h += '</div>';
h += '<div class="bento-recent-apps-container">';
h += buildRecentAppsHTML();

View File

@@ -5872,8 +5872,10 @@ fieldset[name=number-code] {
min-height: 280px;
display: flex;
flex-direction: column;
background: #f8f9fa;
background:
radial-gradient(circle at 90% 10%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
radial-gradient(circle at 10% 90%, rgba(236, 72, 153, 0.04) 0%, transparent 35%),
linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.bento-card-header {
@@ -5989,6 +5991,10 @@ fieldset[name=number-code] {
.bento-usage {
grid-column: 1 / -1;
min-height: auto;
background:
radial-gradient(circle at 5% 50%, rgba(34, 197, 94, 0.05) 0%, transparent 40%),
radial-gradient(circle at 95% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 40%),
linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}
.bento-usage-container {