diff options
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 /> |
