diff options
| author | David Hill <[email protected]> | 2025-10-02 16:35:23 +0100 |
|---|---|---|
| committer | David Hill <[email protected]> | 2025-10-02 16:35:23 +0100 |
| commit | e2378f223736fe157431e49bca2e387aacde53c3 (patch) | |
| tree | e884f41c8b454cc74c5bda04f663073f038f989a /packages | |
| parent | 9e197a5b676c4f4641a70c760fd8aa4c79742fea (diff) | |
| download | opencode-e2378f223736fe157431e49bca2e387aacde53c3.tar.gz opencode-e2378f223736fe157431e49bca2e387aacde53c3.zip | |
Style fixes
Diffstat (limited to 'packages')
| -rw-r--r-- | packages/console/app/src/routes/index.css | 20 | ||||
| -rw-r--r-- | packages/console/app/src/routes/zen/index.css | 16 |
2 files changed, 33 insertions, 3 deletions
diff --git a/packages/console/app/src/routes/index.css b/packages/console/app/src/routes/index.css index 0404bde3d..6cfb77367 100644 --- a/packages/console/app/src/routes/index.css +++ b/packages/console/app/src/routes/index.css @@ -84,6 +84,10 @@ body { p { line-height: 200%; + + @media (max-width: 60rem) { + line-height: 180%; + } } @media (max-width: 60rem) { @@ -246,6 +250,7 @@ body { height: 40px; width: 40px; cursor: pointer; + margin-right: -8px; } [data-component="nav-mobile-toggle"]:hover { @@ -568,9 +573,6 @@ body { margin-bottom: 24px; max-width: 100%; - @media (max-width: 30Rem) { - margin-bottom: 0; - } div { display: flex; @@ -580,6 +582,10 @@ body { span { color: var(--color-icon); line-height: 200%; + + @media (max-width: 60rem) { + line-height: 180%; + } } h3 { @@ -614,6 +620,10 @@ body { gap: 12px; line-height: 200%; + @media (max-width: 60rem) { + line-height: 180%; + } + span { color: var(--color-icon); } @@ -1060,6 +1070,10 @@ body { [data-slot="cell"] + [data-slot="cell"] { border-left: 1px solid var(--color-border-weak); + + @media (max-width: 40rem) { + border-left: none; + } } /* Mobile: third column on its own row */ diff --git a/packages/console/app/src/routes/zen/index.css b/packages/console/app/src/routes/zen/index.css index 74b4ba869..356c4add4 100644 --- a/packages/console/app/src/routes/zen/index.css +++ b/packages/console/app/src/routes/zen/index.css @@ -81,6 +81,10 @@ body { p { line-height: 200%; + + @media (max-width: 60rem) { + line-height: 180%; + } } @media (max-width: 60rem) { @@ -454,6 +458,10 @@ body { span { color: var(--color-icon); line-height: 200%; + + @media (max-width: 60rem) { + line-height: 180%; + } } div { @@ -559,6 +567,10 @@ body { list-style: none; margin-bottom: 24px; line-height: 200%; + + @media (max-width: 60rem) { + line-height: 180%; + } } } @@ -773,6 +785,10 @@ body { [data-slot="cell"] + [data-slot="cell"] { border-left: 1px solid var(--color-border-weak); + + @media (max-width: 40rem) { + border-left: none; + } } /* Mobile: third column on its own row */ |
