Sha256: 249fc42b3c5728a8e75e59421b9f48e6210156bdc0c1a41a8df55f771cd8574b
Contents?: true
Size: 1.07 KB
Versions: 915
Compression:
Stored size: 1.07 KB
Contents
@import "../tokens/typography"; @import "../tokens/colors"; @import "../tokens/shadows"; @import "../tokens/border_radius"; @mixin pb_map_button_states { &:hover { background-color: darken($bg_light, 2%); } &:focus-visible { border: solid 1px $primary_action; box-shadow: unset; } &:active { color: $text_lt_default; background-color: darken($bg_light, 5%); &:focus { border: solid 1px $border_light; } } } @mixin pb_map_button { @include pb_map_button_states; border: solid 1px $border_light; border-radius: $border_radius_md; cursor: pointer; padding: $space_xs + 1; text-align: center; color: $text_lt_light; background-color: $card_light; min-height: 0; display: flex; justify-content: center; align-items: center; } @mixin pb_map_button_dark { color: $text_dk_light; background-color: $bg_dark; border-color: $border_dark; &:hover { background-color: #221e3d; } &:active { color: $text_dk_default; background-color: $bg_dark; &:focus { border: solid 1px $border_dark; } } }
Version data entries
915 entries across 915 versions & 1 rubygems