react-code-dataset
/
next.js
/packages
/next
/src
/next-devtools
/dev-overlay
/panel
/dynamic-panel.css
| /* Panel container base styles with dynamic positioning and sizing */ | |
| .dynamic-panel-container { | |
| position: fixed; | |
| z-index: 2147483646; | |
| outline: none; | |
| top: var(--panel-top, auto); | |
| bottom: var(--panel-bottom, auto); | |
| left: var(--panel-left, auto); | |
| right: var(--panel-right, auto); | |
| width: var(--panel-width); | |
| height: var(--panel-height); | |
| min-width: var(--panel-min-width); | |
| min-height: var(--panel-min-height); | |
| max-width: var(--panel-max-width); | |
| max-height: var(--panel-max-height); | |
| } | |
| /* Panel content container styles */ | |
| .panel-content-container { | |
| position: relative; | |
| width: 100%; | |
| height: 100%; | |
| border: 1px solid var(--color-gray-alpha-400); | |
| border-radius: var(--rounded-xl); | |
| background: var(--color-background-100); | |
| display: flex; | |
| flex-direction: column; | |
| } | |
| /* Draggable content area styles */ | |
| .draggable-content { | |
| flex: 1; | |
| overflow: auto; | |
| } | |