Skip to content

Commit 9ad8871

Browse files
authored
fix(ui): when to hide on small screens (#238)
1 parent ed62e75 commit 9ad8871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/pages/home/previews/artplayer.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
/* Some custom styles for ArtPlayer */
22

33
/* Hide previous and next buttons on small screens */
4-
@media (max-width: 420px) {
4+
@media (max-width: 440px) {
55
.art-control.art-control-previous-button,
66
.art-control.art-control-next-button {
77
display: none;
88
}
99
}
1010

1111
/* Hide time on smaller screens */
12-
@media (max-width: 340px) {
12+
@media (max-width: 360px) {
1313
.art-control.art-control-time {
1414
display: none;
1515
}

0 commit comments

Comments
 (0)