It'd be easier to use something like the Stylus extension, but if you were adamant about using a script you could use....
// ==UserScript==
// The hard way to alter CSS
// TSJ
// https://poal.co/*
// GM_addStyle
// document-start
// ==/UserScript==
GM_addStyle ( `
#bttb {
margin-bottom: 0.1em;
}
` );
It'd be easier to use something like the *Stylus* extension, but if you were adamant about using a script you could use....
```
// ==UserScript==
// @name The hard way to alter CSS
// @author TSJ
// @match https://poal.co/*
// @grant GM_addStyle
// @run-at document-start
// ==/UserScript==
GM_addStyle ( `
#bttb {
margin-bottom: 0.1em;
}
` );
(post is archived)