Compare commits
3 Commits
1ceca94607
...
54117486e1
| Author | SHA1 | Date |
|---|---|---|
|
|
54117486e1 | |
|
|
269417eda2 | |
|
|
6e44a34438 |
|
|
@ -1,5 +1,8 @@
|
||||||
@use './variables.scss' as vars;
|
@use './variables.scss' as vars;
|
||||||
|
|
||||||
|
* {
|
||||||
|
box-sizing: border-box;
|
||||||
|
}
|
||||||
// Reset and base styles
|
// Reset and base styles
|
||||||
:root {
|
:root {
|
||||||
// Global transition for theme switching
|
// Global transition for theme switching
|
||||||
|
|
|
||||||
|
|
@ -411,8 +411,6 @@ const handleLogout = () => {
|
||||||
|
|
||||||
.logout-container {
|
.logout-container {
|
||||||
margin-top: auto;
|
margin-top: auto;
|
||||||
padding: 0.5rem 1rem 1rem;
|
|
||||||
border-top: 1px solid var(--sidebar-border);
|
|
||||||
|
|
||||||
.logout-button {
|
.logout-button {
|
||||||
display: flex;
|
display: flex;
|
||||||
|
|
@ -421,15 +419,14 @@ const handleLogout = () => {
|
||||||
padding: 0.75rem 1rem;
|
padding: 0.75rem 1rem;
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
border: 1px solid var(--sidebar-border);
|
border-radius: 0;
|
||||||
border-radius: 8px;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
transition: all 0.3s ease;
|
transition: all 0.3s ease;
|
||||||
|
border-color: transparent;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background-color: rgba(220, 53, 69, 0.1);
|
background-color: rgba(220, 53, 69, 0.1);
|
||||||
color: #dc3545;
|
color: #dc3545;
|
||||||
border-color: rgba(220, 53, 69, 0.3);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue