Régis Behmo 556f0bf8f3 Unable to interrupt a running server...
I'm quitting, waiting for the upstream issue to be resolved.
2024-12-19 14:51:43 +01:00

90 lines
1.8 KiB
SCSS

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Roboto, sans-serif;
height: 100vh;
display: flex;
flex-direction: column;
}
.main-container {
flex: 1;
display: flex;
overflow: hidden;
.sidebar {
width: 250px;
border-right: 1px solid #363636;
display: flex;
flex-direction: column;
.section {
border-bottom: 1px solid #363636;
min-height: min-content;
.header {
padding: 8px;
border-bottom: 1px solid #363636;
}
.content {
padding: 8px;
ul {
list-style: none;
li {
padding: 4px 8px;
cursor: pointer;
border-radius: 4px;
&:hover {
background-color: #929292;
}
}
}
}
}
}
.workspace {
flex: 1;
padding: 20px;
overflow: hidden;
.header {
margin-bottom: 16px;
color: #888;
font-size: 14px;
}
.content {
outline: none;
min-height: 200px;
height: 100%;
overflow: hidden;
padding-bottom: 20px; // necessary to display the bottom scrollbar
pre {
overflow: scroll;
height: calc(100% - 20px); // must match .content padding-bottom to display scrollbar
}
}
}
}
.status-bar {
height: 24px;
border-top: 1px solid #363636;
display: flex;
align-items: center;
padding: 0 8px;
font-size: 12px;
color: #888;
}