Files
bulma/sass/elements/tag.sass
2017-07-29 18:24:07 +01:00

32 lines
699 B
Sass
Executable File

$tag-background-color: $background !default
$tag-color: $text !default
.tag
align-items: center
background-color: $tag-background-color
border-radius: 290486px
color: $tag-color
display: inline-flex
font-size: $size-small
height: 2em
justify-content: center
line-height: 1.5
padding-left: 0.875em
padding-right: 0.875em
white-space: nowrap
.delete
margin-left: 0.25em
margin-right: -0.375em
// Colors
@each $name, $pair in $colors
$color: nth($pair, 1)
$color-invert: nth($pair, 2)
&.is-#{$name}
background-color: $color
color: $color-invert
// Sizes
&.is-medium
font-size: $size-normal
&.is-large
font-size: $size-medium