Skip to content

Instantly share code, notes, and snippets.

@digiwombat
Created February 11, 2022 02:20
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 digiwombat/99b1de980cc7344f4f7b8c2a9e105a71 to your computer and use it in GitHub Desktop.
Save digiwombat/99b1de980cc7344f4f7b8c2a9e105a71 to your computer and use it in GitHub Desktop.
Fixer for LostArkMap
// ==UserScript==
// @name Lost Ark Fixer
// @namespace https://lostarkmap.com/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://lostarkmap.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=lostarkmap.com
// @grant GM_addStyle
// ==/UserScript==
var style = `
body
{
overflow: hidden !important;
}
main.px-4
{
padding: 0 !important;
}
.container-fluid
{
overflow: hidden !important;
}
div.py-5
{
padding: 0 !important;
padding-top: 12px !important;
}
.fill
{
min-height: calc(100vh - 3em) !important;
}
`;
GM_addStyle(style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment