15 lines
293 B
SCSS
Raw Normal View History

2024-09-22 14:51:34 -04:00
.btn-primary a {
2024-08-25 12:32:35 -04:00
background: var(--site-primary) !important;
color: var(--site-white);
cursor: pointer;
transition: background .2s ease;
padding: 10px 20px;
border: none;
border-radius: 5px;
2024-08-25 12:32:35 -04:00
&:hover {
background: var(--site-white);
color: var(--site-secondary);
2024-08-25 12:32:35 -04:00
}
}