26 lines
530 B
CSS
26 lines
530 B
CSS
.btn{
|
|
background: var(--brand-primary);
|
|
color: var(--brand-white);
|
|
padding: 5px 10px;
|
|
font-weight: var(--font-weight-semibold);
|
|
font-size: var(--font-size-text);
|
|
border-radius: 3px;
|
|
text-decoration: none;
|
|
}
|
|
|
|
.btn-user {
|
|
border-radius: 9999px;
|
|
color: var(--brand-primary);
|
|
background-color: var(--brand-white);
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
justify-items: center;
|
|
align-items: center;
|
|
width: fit-content;
|
|
aspect-ratio: 1/1;
|
|
}
|
|
|
|
.btn-user > span {
|
|
font-size: 28px;
|
|
} |