52 lines
987 B
CSS
52 lines
987 B
CSS
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
|
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
|
sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
scrollbar-gutter: stable;
|
|
overflow: hidden;
|
|
}
|
|
|
|
code {
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
monospace;
|
|
}
|
|
|
|
#browser-content {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
transform: scale(1); /* Ensure no scaling */
|
|
transform-origin: top left; /* Keep the position fixed */
|
|
}
|
|
|
|
#browser-window {
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
}
|
|
|
|
@media (max-width: 1200px) {
|
|
#browser-content {
|
|
flex-direction: column;
|
|
}
|
|
|
|
.right-side-panel {
|
|
height: auto;
|
|
}
|
|
}
|
|
|
|
.right-side-panel {
|
|
overflow-y: auto;
|
|
height: 100%;
|
|
margin: 0;
|
|
transform: scale(1);
|
|
transform-origin: top left;
|
|
}
|