2024-06-21 22:24:02 +05:30
|
|
|
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;
|
2024-07-31 19:47:52 +05:30
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
margin: 0;
|
|
|
|
|
padding: 0;
|
|
|
|
|
scrollbar-gutter: stable;
|
|
|
|
|
overflow: hidden;
|
2024-06-21 22:24:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
|
code {
|
|
|
|
|
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
|
|
|
|
monospace;
|
|
|
|
|
}
|
|
|
|
|
|
2024-10-18 19:08:28 +05:30
|
|
|
#browser-content {
|
|
|
|
|
height: 100vh; /* Ensure it takes the full viewport height */
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column; /* Stack children vertically */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right-side-panel {
|
|
|
|
|
overflow-y: auto; /* Enable vertical scrolling */
|
|
|
|
|
height: 100%; /* Full height of its parent */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#browser-window {
|
|
|
|
|
overflow-y: auto; /* Allow vertical scrolling within this component */
|
|
|
|
|
height: 100%; /* Set to 100% of parent height */
|
2024-10-18 19:28:54 +05:30
|
|
|
max-height: calc(100vh - @media (max-width: 1200px) {
|
|
|
|
|
#browser-content {
|
|
|
|
|
flex-direction: column; /* Stack them vertically on smaller screens */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.right-side-panel {
|
|
|
|
|
height: auto; /* Allow it to adjust its height */
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Ensure proper spacing */
|
|
|
|
|
.right-side-panel {
|
|
|
|
|
overflow-y: auto;
|
|
|
|
|
height: 100%; /* Full height of its parent */
|
|
|
|
|
margin: 0; /* Adjust margin as needed */
|
2024-06-21 22:24:02 +05:30
|
|
|
}
|
2024-10-18 19:28:54 +05:30
|
|
|
|
|
|
|
|
/* Adjust padding in grid items */
|
|
|
|
|
.Grid {
|
|
|
|
|
padding: 8px; /* Add some padding for inner spacing */
|
|
|
|
|
}
|
|
|
|
|
<height_of_fixed_elements>); /* Adjust based on your fixed elements */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|