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
},
"resources/scss/app.scss": {
"file": "assets/app-BVyoWoDj.css",
"file": "assets/app-CCYkocot.css",
"src": "resources/scss/app.scss",
"isEntry": true
},

View file

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