modyfied padding in small button sizes such as accordion list

This commit is contained in:
jorge 2021-07-27 14:42:20 +02:00
parent 3b4c6cb0ba
commit 8282977921
2 changed files with 23 additions and 18 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,23 +1,28 @@
button,.button { button,.button {
&:not(.large,.small,.tiny){ &.small{
// min-width: 20rem; padding: $global-padding*0.5 $global-padding*1.5;
} }
&.primary { &.tiny{
color: $white; padding: $global-padding*0.3 $global-padding*1.1;
} }
&.success { &:not(.large,.small,.tiny){
border-color: $success-color; }
} &.primary {
&.alert { color: $white;
border-color: $alert-color; }
color: $white; &.success {
&:hover{ border-color: $success-color;
color:$white; }
} &.alert {
} border-color: $alert-color;
&.secondary { color: $white;
border-color: $secondary-color; &:hover{
color:$white;
} }
}
&.secondary {
border-color: $secondary-color;
}
} }
.hero { .hero {
button,.button { button,.button {