partial: last batch of components

This commit is contained in:
Rafael Taranto 2025-05-08 21:24:46 +01:00
parent f75477ac34
commit 7fbd51cb7e
43 changed files with 855 additions and 1148 deletions

View file

@ -0,0 +1,30 @@
.button {
composes: p from '../typography/typography.module.css';
border: none;
background-color: var(--zircon);
cursor: pointer;
outline: 0;
display: flex;
justify-content: center;
align-items: center;
width: 167px;
height: 48px;
color: var(--zodiac);
}
.button:hover {
background-color: var(--zircon2);
}
.button:active {
background-color: var(--comet);
color: white;
}
.button:active svg g * {
stroke: white;
}
.button svg {
margin-right: 8px;
}