Files
no-copy-frontend/src/app/styles/global-styles.scss
T

51 lines
813 B
SCSS
Raw Normal View History

2025-11-26 14:01:35 +07:00
@use './header.scss';
2025-11-26 17:18:20 +07:00
@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);
}
2025-11-27 13:48:24 +07:00
}
.divider {
text-align: center;
margin: 20px 0;
position: relative;
color: #9ca3af;
font-size: 14px;
&::before {
content: '';
position: absolute;
top: 50%;
left: 0;
right: 0;
height: 1px;
background: #e5e7eb;
}
span {
background: white;
padding: 0 15px;
position: relative;
}
2025-11-26 17:18:20 +07:00
}