Files
opencode/packages/app/src/index.css
T
David HillandAdam dad5dbc1cc wip: new release modal
- highlight key updates or new features
- needs some transition love
- all copy including text and video placeholder
2026-01-19 14:01:18 -06:00

39 lines
719 B
CSS

@import "@opencode-ai/ui/styles/tailwind";
:root {
a {
cursor: default;
}
}
*[data-tauri-drag-region] {
app-region: drag;
}
/* 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;
}
}
}