Sha256: 488ecff413ce7d099ba68ec3bee9e3728335b5c195a3f7c4e50e19a6459e1538
Contents?: true
Size: 868 Bytes
Versions: 1055
Compression:
Stored size: 868 Bytes
Contents
@import "../tokens/colors"; [class^=pb_distribution_bar] { $bar_colors: map-merge($data_colors, $status_colors); $small_bar: 8px; $large_bar: 36px; display: flex; border-radius: $large_bar; overflow: auto; .pb_distribution_width { height: 100%; display: inline-block; @each $name, $color in $bar_colors { &:nth-child(#{length($bar_colors)}n+#{index(($bar_colors), ($name $color))}) { background-color: $color; } &.color_#{$name} { background-color: $color !important; } } &:first-child { border-top-left-radius: $large_bar; border-bottom-left-radius: $large_bar; } &:last-child { border-top-right-radius: $large_bar; border-bottom-right-radius: $large_bar; } } &[class*=_sm] { height: $small_bar; } &[class*=_lg] { height: $large_bar; } }
Version data entries
1,055 entries across 1,055 versions & 1 rubygems