Skip to content
This repository was archived by the owner on Aug 23, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions client/src/common/Modal.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,12 @@
background-color: rgba(0, 0, 0, 0.03);
}

.title {
margin-right: 32px;
}

.dialogBody {
padding: 16px;
max-width: 80vw;
max-width: 90vw;
overflow-x: auto;
margin-right: 32px;
}
2 changes: 1 addition & 1 deletion client/src/common/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ function Modal({
initialFocusRef={initialFocusRef}
>
<div className={styles.titleWrapper}>
<span>{title}</span>
<span className={styles.title}>{title}</span>
{onClose && (
<IconButton onClick={onClose}>
<CloseIcon />
Expand Down
4 changes: 2 additions & 2 deletions client/src/schema/SchemaSidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -296,10 +296,10 @@ function SchemaSidebar() {
id="context-menu"
style={{
visibility: 'hidden',
position: 'absolute',
position: 'fixed',
height: 1,
left: contextLeft,
top: contextTop - 90,
top: contextTop,
}}
>
Hidden context menu
Expand Down