You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On the WiiLink website, there are 2 sliding rows that show all the services WiiLink offers, but they are static.
I have been on the website before, and I know the rows are suppost to be sliding.
If you go into dev tools, then sources, then https://www.wiilink24.com/_astro/index.ed21146a.css, then replace @media(prefers-reduced-motion:reduce) { .slide-track[data-astro-cid-g5jplrhu] { animation: none!important; transform: translate(0) }
with @media(prefers-reduced-motion:reduce) { .slide-track[data-astro-cid-g5jplrhu] { transform: translate(0) }
then the sliders start working.
(P.S dev tools shows that the line goes from 782 to 786 or 785)
The text was updated successfully, but these errors were encountered:
On the WiiLink website, there are 2 sliding rows that show all the services WiiLink offers, but they are static.
I have been on the website before, and I know the rows are suppost to be sliding.
If you go into dev tools, then sources, then https://www.wiilink24.com/_astro/index.ed21146a.css, then replace
@media(prefers-reduced-motion:reduce) {
.slide-track[data-astro-cid-g5jplrhu] {
animation: none!important;
transform: translate(0)
}
with
@media(prefers-reduced-motion:reduce) {
.slide-track[data-astro-cid-g5jplrhu] {
transform: translate(0)
}
then the sliders start working.
(P.S dev tools shows that the line goes from
782
to786
or785
)The text was updated successfully, but these errors were encountered: