From 173d8eb2b88e0b7e4b8a11127b6f7a55b679d354 Mon Sep 17 00:00:00 2001 From: Oleh Omelchenko Date: Wed, 15 Oct 2025 17:28:09 +0300 Subject: [PATCH] fix: height of datasets pane --- src/styles.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/styles.css b/src/styles.css index 8de4b3f..a38ae37 100644 --- a/src/styles.css +++ b/src/styles.css @@ -206,7 +206,7 @@ body { font-family: var(--font-main); height: 100vh; overflow: hidden; backgroun /* Modal */ .modal { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.5); display: flex; align-items: center; justify-content: center; z-index: 1000; } -.modal-content { background: var(--win-gray); border: 2px outset var(--win-gray); width: 90%; max-width: 900px; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 4px 4px 8px rgba(0,0,0,0.3); } +.modal-content { background: var(--win-gray); border: 2px outset var(--win-gray); width: 90%; max-width: 900px; height: 80vh; max-height: 90vh; display: flex; flex-direction: column; box-shadow: 4px 4px 8px rgba(0,0,0,0.3); } .modal-header { background: #008; color: var(--bg-white); padding: 4px 8px; display: flex; justify-content: space-between; align-items: center; height: 24px; border-bottom: 2px solid var(--win-gray-dark); } .modal-title { font-size: 12px; font-weight: bold; } .modal-body { flex: 1; overflow: auto; background: var(--bg-white); border: 2px inset var(--win-gray); margin: 8px; min-height: 0; }