CSS - Button :focus, disabled, :active

0 votes
223 views
added Jun 4, 2020 in CSS by lcjr First Warrant Officer (11,790 points)
.btn {
  &:focus {
    box-shadow: none !important;
  }
  &-secondary {
    &:not(:disabled):not(.disabled):active {
      background: none;
      color: #a5adb5;
      border: 0;
      border-bottom: 1px solid #a5adb5;
    
    }
  }
}

 

lazacode.org - Malaysia's programming knowledge sharing platform, where everyone can share their finding as reference to others.
...