Browse Source

fix: Apply :hover, :focus and :active only when multiple columns

closed-social-glitch-2
Sorin Davidoi 6 years ago
parent
commit
d8c4781377
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      app/javascript/styles/components.scss

+ 4
- 2
app/javascript/styles/components.scss View File

@ -1473,8 +1473,10 @@
&:hover, &:hover,
&:focus, &:focus,
&:active { &:active {
background: lighten($ui-base-color, 14%);
transition: all 100ms linear;
@media screen and (min-width: 1025px) {
background: lighten($ui-base-color, 14%);
transition: all 100ms linear;
}
} }
span { span {

Loading…
Cancel
Save