Files
lena-schilling-website/packages/base/Resources/Public/Scss/components/_buttons.scss
Dominik Polakovics 911c228322
Some checks failed
Build / deploy-stage (push) Blocked by required conditions
Build / switch-stage (push) Blocked by required conditions
Build / build (push) Has been cancelled
feat: change button hover, change small textimage design
2024-12-17 16:03:34 +01:00

17 lines
340 B
SCSS

.btn {
background-color: var(--bs-primary);
color: var(--bs-yellow);
font-family: 'Inter', sans-serif;
font-weight: 700;
border-radius: .5rem;
padding: 0.75rem 1.5rem;
border: none;
cursor: pointer;
transition: background 0.3s;
&:hover {
background-color: var(--bs-primary-dark);
color: var(--bs-yellow);
}
}