First Working version. I can add table

This commit is contained in:
2025-05-10 16:55:52 +02:00
parent b708ef2c46
commit 2daff83e67
157 changed files with 17282 additions and 12 deletions

View File

@@ -0,0 +1,28 @@
.drawer-layout {
display: flex;
margin: 0;
}
.sidebar {
width: 200px;
min-width : 200px;
transition: width 0.4s ease;
}
.sidebar.collapsed {
overflow: hidden;
width: 0;
min-width : 0;
padding: 0;
}
.main {
flex-grow: 1;
padding: 20px;
}
.toggle-button {
margin-bottom: 20px;
cursor: pointer;
padding: 10px 15px;
background-color: #3498db;
color: white;
border: none;
border-radius: 5px;
}