diff options
| author | David Hill <[email protected]> | 2025-12-21 16:45:49 +0000 |
|---|---|---|
| committer | adamelmore <[email protected]> | 2026-01-26 15:35:09 -0600 |
| commit | a77df3c17482fce94a19554283bdba6f03135f67 (patch) | |
| tree | 23993b7dce6df37eb92349b9e86040a0b60e3a8b /packages/app/src/index.css | |
| parent | 9d1cf98192fdcfb9a76044c0cb9818565198a769 (diff) | |
| download | opencode-a77df3c17482fce94a19554283bdba6f03135f67.tar.gz opencode-a77df3c17482fce94a19554283bdba6f03135f67.zip | |
wip: new release modal
- highlight key updates or new features
- needs some transition love
- all copy including text and video placeholder
Diffstat (limited to 'packages/app/src/index.css')
| -rw-r--r-- | packages/app/src/index.css | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/packages/app/src/index.css b/packages/app/src/index.css index 3d7b9db7a..c0c7da858 100644 --- a/packages/app/src/index.css +++ b/packages/app/src/index.css @@ -55,3 +55,30 @@ scrollbar-width: thin !important; scrollbar-color: var(--border-weak-base) transparent !important; } + +/* Wider dialog variant for release notes modal */ +[data-component="dialog"]:has(.dialog-release-notes) { + padding: 20px; + box-sizing: border-box; + + [data-slot="dialog-container"] { + width: min(100%, 720px); + height: min(100%, 400px); + margin-top: -80px; + + [data-slot="dialog-content"] { + min-height: auto; + overflow: hidden; + height: 100%; + border: none; + box-shadow: var(--shadow-lg-border-base); + } + + [data-slot="dialog-body"] { + overflow: hidden; + height: 100%; + display: flex; + flex-direction: row; + } + } +} |
