FIX: Links in category box descriptions should be clickable

This commit is contained in:
Kris 2020-02-04 13:02:55 -05:00
parent f88fa99b0b
commit 35a1912e2d
1 changed files with 8 additions and 0 deletions

View File

@ -124,8 +124,16 @@
text-align: center;
font-size: $font-0;
color: dark-light-choose($primary-medium, $secondary-high);
position: relative;
// allow clicks to fall through the description text to the category below...
pointer-events: none;
.overflow {
max-height: 6em;
div a {
// ...but links in description should still be clickable
pointer-events: auto;
}
}
}