From 9f46068c5708d7e83163cd06b40c27ed46d4712f Mon Sep 17 00:00:00 2001 From: Jay V Date: Tue, 16 Sep 2025 19:39:34 -0400 Subject: ignore: mobile styles zen --- cloud/app/src/routes/workspace/[id].css | 20 +++++++++++++++++++- cloud/app/src/routes/workspace/[id].tsx | 3 ++- 2 files changed, 21 insertions(+), 2 deletions(-) (limited to 'cloud/app/src/routes') diff --git a/cloud/app/src/routes/workspace/[id].css b/cloud/app/src/routes/workspace/[id].css index e1047e155..8b318a19f 100644 --- a/cloud/app/src/routes/workspace/[id].css +++ b/cloud/app/src/routes/workspace/[id].css @@ -26,7 +26,11 @@ section { display: flex; flex-direction: column; - gap: var(--space-6); + gap: var(--space-8); + + @media (max-width: 30rem) { + gap: var(--space-6); + } /* Section titles */ [data-slot="section-title"] { @@ -47,6 +51,20 @@ font-size: var(--font-size-md); } } + + p { + line-height: 1.5; + font-size: var(--font-size-md); + color: var(--color-text-muted); + + a { + color: var(--color-text-muted); + } + + @media (max-width: 30rem) { + font-size: var(--font-size-sm); + } + } } } section:not(:last-child) { diff --git a/cloud/app/src/routes/workspace/[id].tsx b/cloud/app/src/routes/workspace/[id].tsx index ed1434a69..cbd729f72 100644 --- a/cloud/app/src/routes/workspace/[id].tsx +++ b/cloud/app/src/routes/workspace/[id].tsx @@ -38,7 +38,8 @@ export default function () { - + + {/**/} -- cgit v1.2.3