diff options
| author | Jay V <[email protected]> | 2025-09-16 19:39:34 -0400 |
|---|---|---|
| committer | Jay V <[email protected]> | 2025-09-16 19:39:36 -0400 |
| commit | 9f46068c5708d7e83163cd06b40c27ed46d4712f (patch) | |
| tree | d97b9a4a023c15b5e65b9f221234d2baf78fdbfd /cloud/app/src/routes | |
| parent | 479cf2fa4f5f84e330ca4d02601d0d81234811d0 (diff) | |
| download | opencode-9f46068c5708d7e83163cd06b40c27ed46d4712f.tar.gz opencode-9f46068c5708d7e83163cd06b40c27ed46d4712f.zip | |
ignore: mobile styles zen
Diffstat (limited to 'cloud/app/src/routes')
| -rw-r--r-- | cloud/app/src/routes/workspace/[id].css | 20 | ||||
| -rw-r--r-- | cloud/app/src/routes/workspace/[id].tsx | 3 |
2 files changed, 21 insertions, 2 deletions
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 () { <NewUserSection /> <KeySection /> <BillingSection /> - <Show when={balanceInfo()?.reload}> + <Show when={true}> + {/*<Show when={balanceInfo()?.reload}>*/} <MonthlyLimitSection /> </Show> <UsageSection /> |
