fix double click on mobile

This commit is contained in:
Constantin Plaiasu 2024-08-26 20:55:28 +03:00
parent 1d6a5fdfaa
commit e3e46384f6
3 changed files with 13 additions and 13 deletions

File diff suppressed because one or more lines are too long

View file

@ -36,7 +36,7 @@
"isEntry": true "isEntry": true
}, },
"resources/scss/app.scss": { "resources/scss/app.scss": {
"file": "assets/app-BVyoWoDj.css", "file": "assets/app-CCYkocot.css",
"src": "resources/scss/app.scss", "src": "resources/scss/app.scss",
"isEntry": true "isEntry": true
}, },

View file

@ -8,23 +8,23 @@
-webkit-transition: all 0.3s; -webkit-transition: all 0.3s;
-o-transition: all 0.3s; -o-transition: all 0.3s;
transition: all 0.3s; transition: all 0.3s;
} @media (hover) {
@media (hover: none) { &:hover {
.movie-card:hover {
-webkit-transform: scale(1.05); -webkit-transform: scale(1.05);
-ms-transform: scale(1.05); -ms-transform: scale(1.05);
transform: scale(1.05); transform: scale(1.05);
} }
.movie-card:hover .movie-card__thumb .icon { &:hover .movie-card__thumb .icon {
opacity: 1; opacity: 1;
visibility: visible; visibility: visible;
} }
}
} }
.movie-card__thumb { .movie-card__thumb {
position: relative; position: relative;
} }