Files
web/components/TempDesignSystem/Button/button.module.css
2024-04-02 13:43:23 +02:00

27 lines
451 B
CSS

.btn {
background: none;
border: none;
cursor: pointer;
margin: 0;
padding: 0;
}
.default {
align-items: center;
background-color: var(--some-white-color, #fff);
border-radius: 4rem;
color: var(--some-grey-color, #111);
display: flex;
font-family: var(--ff-fira-sans);
font-size: 1.8rem;
font-weight: 600;
gap: 1.6rem;
letter-spacing: 1%;
line-height: 2.2rem;
padding: 1.3rem 3rem;
}
.icon {
font-size: 1.8rem;
}