1
0

Created the Button styles.sass

This commit is contained in:
Mathias Wagner 2023-11-18 19:32:24 +01:00
parent d7b7a3be26
commit 71777a2030
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,19 @@
@import "@styles/colors"
.btn
display: flex
align-items: center
gap: 1rem
color: $text
padding: 0.7rem 1.5rem
border-radius: 0.5rem
font-size: 1.2rem
font-weight: 600
cursor: pointer
transition: 0.2s
&:hover
transform: scale(1.03) rotate(2deg)
&:active
transform: scale(0.95) rotate(-2deg)