Fix hover state of disabled link on IE

This commit is contained in:
George Drummond 2019-02-20 13:49:46 -05:00
parent e1eaa90980
commit e9ee8553ce
No known key found for this signature in database
GPG Key ID: 296DD6077123BF17

View File

@ -67,8 +67,13 @@
&.icon-link--disabled {
opacity: 0.3;
pointer-events: none;
text-decoration: none;
pointer-events: none;
&:hover {
cursor: default;
background: $color-white;
}
}
&.icon-link--left {