Régis Behmo 34028c0e7c working prototype
Now there is a lot of TODO items remaining...
2024-12-05 15:23:46 +01:00

82 lines
1.5 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: scroll;
.header {
margin-bottom: 16px;
color: #888;
font-size: 14px;
}
.content {
outline: none;
min-height: 200px;
}
}
}
.status-bar {
height: 24px;
border-top: 1px solid #363636;
display: flex;
align-items: center;
padding: 0 8px;
font-size: 12px;
color: #888;
}