CSS - remove glow in focus property

0 votes
274 views
added Jun 3, 2020 in CSS by lcjr First Warrant Officer (11,890 points)

// remove glow on focus
.btn {
  &:focus {
    box-shadow: none !important;
  }
}

 

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