Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 4 additions & 20 deletions home/cards.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,18 @@
{
"left": [
{
"id": "apps",
"title": "Apps",
"type": "apps",
"position": 0,
"link": "/apps",
"icon": ""
},
{
"id": "blog",
"title": "Blog",
"type": "blog",
"position": 1,
"position": 0,
"link": "/blog",
"icon": "/post.png"
},
{
"id": "news",
"title": "News",
"type": "news",
"position": 2,
"position": 1,
"link": "/news",
"icon": "/news.png"
}
Expand All @@ -34,27 +26,19 @@
"link": "",
"icon": "/reminder.svg"
},
{
"id": "agent",
"title": "Agent",
"type": "agent",
"position": 1,
"link": "",
"icon": "/agent.svg"
},
{
"id": "markets",
"title": "Markets",
"type": "markets",
"position": 2,
"position": 1,
"link": "/markets",
"icon": "/markets.svg"
},
{
"id": "video",
"title": "Video",
"type": "video",
"position": 3,
"position": 2,
"link": "/video",
"icon": "/video.png"
}
Expand Down
23 changes: 2 additions & 21 deletions internal/app/html/mu.css
Original file line number Diff line number Diff line change
Expand Up @@ -2230,32 +2230,13 @@ a.highlight {
font-size: 12px;
}

/* Reorder cards on mobile: dynamic content first, utilities lower */
/* Reorder cards on mobile */
#reminder { order: 1; }
#news { order: 2; }
#markets { order: 3; }
#blog { order: 4; }
#video { order: 5; }
#agent { order: 6; }
#apps { order: 7; }
#home-chat { order: 8; }

/* Compact agent card on mobile — single-line utility bar */
#agent #home-agent-form > div:last-child {
display: none;
}
#agent #home-agent-form > div:first-child input {
font-size: 13px;
padding: 6px;
}
#agent #home-agent-form > div:first-child button {
padding: 6px 12px;
font-size: 13px;
}

/* Compact apps card on mobile */
#apps p { font-size: 13px; margin: 4px 0; }
#apps p img { width: 16px; height: 16px; }
#home-chat { order: 6; }

.cover {
display: block;
Expand Down
Loading