sweethuman / Fix Academic Info X

// ==UserScript==
// @name         Fix Academic Info X
// @namespace    https://github.com/sweethuman/
// @homepage     https://github.com/sweethuman/
// @version      0.1
// @description  Aligns that misaligned X on academic info
// @author       Gheorghe Avram(sweethuman)
// @match        https://academicinfo.ubbcluj.ro/*
// @license      MIT
// @grant        none
// @require      https://code.jquery.com/jquery-3.4.1.min.js
// ==/UserScript==

(function () {
  'use strict';

  $("#meniu_toggle").css("display", "flex");
  $("#meniu_toggle").css("flex-direction", "row");
  $("#meniu_toggle i:first-child").css("margin", "auto");
})();