WaniKani: Show me the buttons, please

Show the reviews and lessons buttons on the top regardless of scroll position

// ==UserScript==
// @name         WaniKani: Show me the buttons, please
// @namespace    sad-axolotl
// @version      1
// @description  Show the reviews and lessons buttons on the top regardless of scroll position
// @author       sad-axolotl
// @include     /^https?://(www|preview).wanikani.com(/|/dashboard)?$/
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $('<style>').text('.navigation-shortcuts.hidden { display:flex; visibility:visible; }').appendTo(document.head)
})();