[REPO REFACTOR]: changed to a better git repository structure with branches

This commit is contained in:
2025-11-01 03:57:48 +01:00
parent 85f98f66b4
commit 3dd17352aa
156 changed files with 15648 additions and 0 deletions

46
src/css/Sidebar.css Normal file
View File

@@ -0,0 +1,46 @@
.sidebar {
background-color: var(--sidebar-bg) !important;
border-right: 1px solid var(--divider-color);
padding: 1rem;
height: 100vh;
display: flex;
flex-direction: column;
width: 220px;
flex-shrink: 0;
gap: 1rem;
}
.sidebar .compose-btn {
background-color: var(--btn-bg);
color: var(--btn-text);
border: none;
border-radius: 8px;
padding: 0.5rem 1rem;
font-weight: bold;
cursor: pointer;
}
.sidebar .compose-btn:hover {
background-color: var(--btn-bg-hover);
color: var(--btn-text-hover);
}
.sidebar nav {
display: flex;
flex-direction: column;
gap: 0.5rem;
}
.sidebar nav a {
padding: 0.5rem 0.75rem;
border-radius: 6px;
color: var(--text-color);
text-decoration: none;
font-weight: 500;
}
.sidebar nav a:hover {
background-color: var(--list-hover-bg);
}