propapier/app/assets/styles/button.css
webfussel c99c243dfc add: bottom toolbar, remove button for cards
Implemented bottom toolbar for adding and calculating, added remove button for Price Cards
2025-02-17 20:38:18 +01:00

49 lines
No EOL
960 B
CSS

.Button {
--padding: .2rem;
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
cursor: pointer;
transition: var(--transition-default);
outline: none;
border: none;
background: transparent;
&.cta {
background: var(--color-main);
color: var(--color-white);
padding: .5rem 1.5rem;
border-radius: var(--radius-default);
box-shadow: var(--box-shadow-z2);
&:hover {
background: var(--color-main-dark);
}
}
&.icon-button {
display: flex;
padding: var(--padding);
border-radius: 100%;
&:hover {
scale: 1.2;
}
}
&.mini-button {
padding: .5rem 1.5rem;
display: flex;
flex-direction: column;
gap: .5rem;
& > .icon {
font-size: 1.5rem;
}
& > span {
font-size: .8rem;
}
}
}