bootstrap icon indicating copy to clipboard operation
bootstrap copied to clipboard

Make hover state in utility classes more relevant

Open fredDesign opened this issue 1 year ago • 0 comments

Prerequisites

Proposal

The sate "hover" would not have to generate default value

Motivation and context

The sate hover would not have to generate a defaut state as it works at this moment. Right now, this option is unusable in many case Example :

"bghover": (
      property: background-color,
      class:bgh,
      state: hover,
      values: (
          primary:$primary,
      ),

.bgh-primary {
  background-color: #25bbe4 !important;
}

.bgh-primary-hover:hover {
  background-color: #25bbe4 !important;
}

fredDesign avatar Oct 21 '24 10:10 fredDesign