Compare commits

..

No commits in common. "54117486e1dcca51dda9e0d41f280d1ca2314151" and "1ceca9460774b38b5396063b3d0f94b66c976f8c" have entirely different histories.

2 changed files with 5 additions and 5 deletions

View File

@ -1,8 +1,5 @@
@use './variables.scss' as vars;
* {
box-sizing: border-box;
}
// Reset and base styles
:root {
// Global transition for theme switching

View File

@ -411,6 +411,8 @@ const handleLogout = () => {
.logout-container {
margin-top: auto;
padding: 0.5rem 1rem 1rem;
border-top: 1px solid var(--sidebar-border);
.logout-button {
display: flex;
@ -419,14 +421,15 @@ const handleLogout = () => {
padding: 0.75rem 1rem;
background-color: transparent;
color: var(--text-color);
border-radius: 0;
border: 1px solid var(--sidebar-border);
border-radius: 8px;
cursor: pointer;
transition: all 0.3s ease;
border-color: transparent;
&:hover {
background-color: rgba(220, 53, 69, 0.1);
color: #dc3545;
border-color: rgba(220, 53, 69, 0.3);
}
.icon {