Created the Button styles.sass

This commit is contained in:
Mathias Wagner 2023-11-13 11:47:47 +01:00
parent 786da0c5dc
commit e67610a911
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

View File

@ -0,0 +1,18 @@
@import "@/common/styles/colors"
.btn
background-color: $primary
border: none
color: $text
padding: 0.5rem 1rem
border-radius: 0.6rem
font-size: 14pt
font-weight: 600
transition: all 0.2s
cursor: pointer
.btn:hover
filter: brightness(0.9)
.btn:active
transform: rotateY(20deg)