add dashboard layout

This commit is contained in:
smanylov
2025-11-26 17:18:20 +07:00
parent ebca795c1b
commit 12f788829f
9 changed files with 860 additions and 2 deletions
+26 -1
View File
@@ -1,2 +1,27 @@
@use './header.scss';
@use './dashboard.scss';
@use './dashboard.scss';
.btn {
padding: 12px 24px;
border-radius: 10px;
border: none;
cursor: pointer;
font-size: 14px;
font-weight: 600;
transition: all 0.3s;
text-decoration: none;
display: inline-flex;
align-items: center;
justify-content: center;
}
.btn-primary {
background: linear-gradient(135deg, #6366f1, #8b5cf6);
color: white;
border: 2px solid transparent;
&:hover {
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}
}