Center fullscreen button and adjust its size

Added CSS rules to center the fullscreen button's SVG and set its width and height to 30px for improved alignment and appearance.
This commit is contained in:
Yiannis Christodoulou 2025-10-16 15:48:21 +03:00
parent 166882558d
commit d955576a7e

View File

@ -27,3 +27,9 @@ button {
opacity: 0 !important; opacity: 0 !important;
visibility: hidden !important; visibility: hidden !important;
} }
/* Center the fullscreen button inside its wrapper */
.vjs-fullscreen-control svg {
width: 30px !important;
height: 30px !important;
}