forked from M3-Academy/m3-academy-template-checkout
feat: cria mixin de buttonStyle
This commit is contained in:
parent
f287273dc2
commit
a78185d880
@ -26,21 +26,22 @@
|
||||
// background: yellow;
|
||||
|
||||
button {
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
line-height: 18px;
|
||||
font-size: 13px;
|
||||
font-family: $font-family;
|
||||
font-weight: 700;
|
||||
color: $color-white;
|
||||
background: $blue-300;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
@include buttonStyle();
|
||||
// border: none;
|
||||
// border-radius: 8px;
|
||||
// line-height: 18px;
|
||||
// font-size: 13px;
|
||||
// font-family: $font-family;
|
||||
// font-weight: 700;
|
||||
// color: $color-white;
|
||||
// background: $blue-300;
|
||||
// text-align: center;
|
||||
// text-transform: uppercase;
|
||||
|
||||
font-style: normal;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
letter-spacing: 0.05em;
|
||||
// font-style: normal;
|
||||
// display: flex;
|
||||
// align-items: center;
|
||||
// letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
&--image {
|
||||
|
@ -80,6 +80,24 @@
|
||||
&::-webkit-input-placeholder { @content; }
|
||||
}
|
||||
|
||||
@mixin buttonStyle($width: 100%, $color: #ffffff, $bg-color: #00C8FF) {
|
||||
border: none;
|
||||
border-radius: 8px;
|
||||
line-height: 18px;
|
||||
font-size: 13px;
|
||||
font-family: $font-family;
|
||||
font-weight: 700;
|
||||
color: $color-white;
|
||||
background: $blue-300;
|
||||
text-align: center;
|
||||
text-transform: uppercase;
|
||||
|
||||
font-style: normal;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
|
||||
@mixin hardware($backface: true, $perspective: 1000) {
|
||||
@if $backface {
|
||||
backface-visibility: hidden;
|
||||
|
Loading…
Reference in New Issue
Block a user