12 lines
227 B
SCSS
12 lines
227 B
SCSS
|
.button {
|
||
|
background: #0060ff;
|
||
|
color: white;
|
||
|
width: max-content;
|
||
|
font-size: clamp(1em,2vw,1em);
|
||
|
padding: 0.75em;
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
text-decoration: none;
|
||
|
border-radius: 100em;
|
||
|
font-weight: 700;
|
||
|
}
|