bulma/sass/elements/box.sass
Wikiki f0e2fbbbda Box: Fix missing variables (#924)
* Fix missing variables

Add $box-border and $box-padding variables

* Manage only padding
2017-07-26 18:44:03 +01:00

25 lines
625 B
Sass

$box: $text !default
$box-background: $white !default
$box-radius: $radius-large !default
$box-shadow: 0 2px 3px rgba($black, 0.1), 0 0 0 1px rgba($black, 0.1) !default
$box-padding: 1.25rem !default
$box-link-hover-shadow: 0 2px 3px rgba($black, 0.1), 0 0 0 1px $link
$box-link-active-shadow: inset 0 1px 2px rgba($black, 0.2), 0 0 0 1px $link
.box
+block
background-color: $box-background
border-radius: $box-radius
box-shadow: $box-shadow
color: $box
display: block
padding: $box-padding
a.box
&:hover,
&:focus
box-shadow: $box-link-hover-shadow
&:active
box-shadow: $box-link-active-shadow