Reddit new look compact list

Reddit new look theme compact list 2024

// ==UserScript==
// @name        Reddit new look compact list 
// @namespace   english
// @description  Reddit new look theme compact list 2024
// @include     http*://*reddit.com*
// @version     1.1
// @run-at document-end
// @license MIT
// @grant       GM_addStyle
// ==/UserScript==

// Main - Collapse the Greasy Fork Header

var style = document.createElement('style');
style.type = 'text/css';

style.innerHTML = '        .p-md {   padding: 2px  !important ; }  .mb-xs {   margin-bottom: 0  !important ; }       ';

document.getElementsByTagName('head')[0].appendChild(style);