Initial frontend implementation

This commit is contained in:
2024-09-25 18:37:44 +02:00
parent 4a21b7de97
commit 646b683cbb
12 changed files with 7683 additions and 0 deletions

33
frontend/src/App.scss Normal file
View File

@@ -0,0 +1,33 @@
.App {
display: flex;
height: 100vh;
.sidebar {
width: 200px;
background-color: #f0f0f0;
padding: 20px;
overflow-y: auto;
}
.main-content {
flex-grow: 1;
padding: 20px;
overflow-y: auto;
}
}
.file-tree {
ul {
list-style-type: none;
padding-left: 20px;
}
li {
margin-bottom: 5px;
cursor: pointer;
&:hover {
text-decoration: underline;
}
}
}