thexmanxyz / Owl-Carousel-Neo-Gantry

This project is based on the default Gantry Helium - Owl Carousel Particle but extends it with additional features and also includes slick new designs.
https://gantryprojects.com
MIT License
7 stars 2 forks source link

A small bug in SCSS after Gantry Update #9

Open 01Kuzma opened 3 years ago

01Kuzma commented 3 years ago

Gantry uses a newer more strict compiler, so this in _owlcarousel-neo.scss won't work anymore:

            &:hover {
                background: fadeout($white, 80%);
                border-color: transparent;
            }

it have to be changed to

background: fadeout($white, 0.8);