18 lines
409 B
Sass
18 lines
409 B
Sass
@mixin button-icon-only
|
|
padding: 2px 5px
|
|
margin: 0
|
|
|
|
@mixin table-fit
|
|
width: 1px
|
|
white-space: nowrap
|
|
= button-shadow
|
|
transition: box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1)
|
|
transition-delay: 0.2s
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26)
|
|
= push-button($bg: $secondary-color, $padding: 10px)
|
|
+button($bg: $bg)
|
|
+button-shadow
|
|
padding: $padding
|
|
margin: 0
|
|
border-radius: $global-rounded
|