File size: 886 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
/* 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;
}
|