Increase mobile caption font size to 13

Updated the mobileFontSize setting in the captions config from 10 to 13 to improve readability on mobile devices.
This commit is contained in:
Yiannis Christodoulou 2025-10-16 16:19:20 +03:00
parent b186bbe669
commit 84ed74d40d
2 changed files with 3 additions and 2 deletions

View File

@ -29,9 +29,10 @@ button {
} }
/* Center the fullscreen button inside its wrapper */ /* Center the fullscreen button inside its wrapper */
@media (hover: hover) and (pointer: fine) { /* @media (hover: hover) and (pointer: fine) {
.vjs-fullscreen-control svg { .vjs-fullscreen-control svg {
width: 30px !important; width: 30px !important;
height: 30px !important; height: 30px !important;
} }
} }
*/

View File

@ -40,7 +40,7 @@ const PlayerConfig = {
// Font size in em units // Font size in em units
fontSize: 14, fontSize: 14,
mobileFontSize: 10, mobileFontSize: 13,
}, },
}; };