Skip to content

Instantly share code, notes, and snippets.

@AioiLight
Last active October 8, 2023 15:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AioiLight/3a6b88c90f22adb03e639a2d1c851937 to your computer and use it in GitHub Desktop.
Save AioiLight/3a6b88c90f22adb03e639a2d1c851937 to your computer and use it in GitHub Desktop.
Disable rounded corner of YouTube video player
@-moz-document domain("youtube.com") {
:root {
--yt-player-corner-radius-mod: 0px;
}
/* YouTube Video Player */
#ytd-player {
border-radius: var(--yt-player-corner-radius-mod) !important;
}
/* YouTube Shorts */
.ytd-reel-video-renderer {
border-radius: var(--yt-player-corner-radius-mod) !important;
}
}
:root {
--yt-player-corner-radius-mod: 0px;
}
/* YouTube Video Player */
#ytd-player {
border-radius: var(--yt-player-corner-radius-mod) !important;
}
/* YouTube Shorts */
.ytd-reel-video-renderer {
border-radius: var(--yt-player-corner-radius-mod) !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment