Hides the new unlocks, critical condition, burned items, and community panels on the WaniKani dashboard
WaniKani Remove Useless Panels by fallynleaf

Details
Authorfallynleaf
LicenseNo License
Categorywanikani.com
Created
Updated
Size664 B
Statistics
Learn how we calculate statistics in the FAQ.
Failed to fetch stats.
Description
Notes
Userstyle doesn't have notes.Source code
/* ==UserStyle==
@name WaniKani Remove Useless Panels
@namespace github.com/openstyles/stylus
@version 1.0
@description Hides the new unlocks, critical condition, burned items, and community panels on the WaniKani dashboard
@author fallynleaf
==/UserStyle== */
@-moz-document domain("wanikani.com") {
.dashboard .dashboard__item-lists .wk-panel--dashboard-list-unlocks {
display: none;
}
.dashboard .dashboard__item-lists .wk-panel--dashboard-list-critical {
display: none;
}
.dashboard .dashboard__item-lists .wk-panel--dashboard-list-burned {
display: none;
}
.dashboard .dashboard__community-banner {
display: none;
}
}