wip: new release modal

- highlight key updates or new features
- needs some transition love
- all copy including text and video placeholder
This commit is contained in:
David Hill
2025-12-21 16:45:49 +00:00
committed by adamelmore
parent 9d1cf98192
commit a77df3c174
7 changed files with 303 additions and 0 deletions

View File

@@ -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;
}
}
}