Stop game info labels from overlapping games on itch.io

put the game info labels above the game rather than fixed to the right side, which can overlap with narrow widths

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name        Stop game info labels from overlapping games on itch.io
// @namespace   Itsnotlupus Industries
// @match       https://*.itch.io/*
// @grant       none
// @version     1.0
// @author      itsnotlupus
// @license     MIT
// @description put the game info labels above the game rather than fixed to the right side, which can overlap with narrow widths
// ==/UserScript==
const crel = (name, attrs, ...children) => ((e = Object.assign(document.createElement(name), attrs)) => (e.append(...children), e.__init?.(), e))();


document.head.append(crel('style',{
  type: 'text/css',
  textContent: `
    #user_tools { position: initial; display: block }
    #user_tools > li { display: inline }
  `
}))