Enlarges action buttons for replies and likes on Anilist
// ==UserScript==
// @name Larger Action Buttons
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Enlarges action buttons for replies and likes on Anilist
// @match https://anilist.co/*
// @icon https://anilist.co/favicon.ico
// @grant GM_addStyle
// @license MIT
// ==/UserScript==
GM_addStyle ( `
/* Edit numerical value below to change the button size */
.action.replies, .actions .button, .actions .count {
font-size: 1.8rem !important;
}
` );