Youtube
youtube.com by drawoc
Details
Authordrawoc
LicenseNo License
CategoryYoutube lay
Created
Updated
Size788 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name youtube.com
@version 20241220.13.47
@namespace https://userstyles.world/user/drawoc
@description Youtube
@author drawoc
@license No License
==/UserStyle== */
@-moz-document domain("youtube.com") {
/* Hide the left sidebar */
#guide {
display: none !important;
}
/* Expand the main content to occupy the full width */
#content.style-scope.ytd-app {
margin-left: 0 !important;
}
/* Adjust the video grid for 6 videos in a row */
ytd-rich-grid-renderer {
--ytd-rich-grid-items-per-row: 6 !important;
--ytd-rich-grid-item-margin: 10px !important;
}
/* Ensure video cards are sized appropriately */
ytd-rich-grid-media {
width: calc((100% - 50px) / 6) !important; /* Adjust the number 50px for the margin total */
}
}