https://domlink.deployments.hotsocket.fyi/
at main 32 lines 584 B view raw
1.LWindow { 2 min-width: 150px; 3 min-height: 150px; 4 resize: both; 5 border: 1px solid black; 6 box-sizing: border-box; 7 position: absolute; 8 overflow: auto; 9 display: flex; 10 flex-direction: column; 11 background-color: lightgray; 12 padding-bottom: 1em; 13} 14.LWindowHandle { 15 width: auto; 16 height: 1.5em; 17 padding-left: 0.5ch; 18 padding-right: 0.5ch; 19 cursor: grab; 20 background-color: lightsteelblue; 21 display: flex; 22 justify-content: space-between; 23 align-items: center; 24 overflow: hidden; 25} 26.LWindowContent { 27 background-color: white; 28 flex: 1; 29 width: 100%; 30 height: 100%; 31 overflow: auto; 32}