Update screen size limit for tags

This commit is contained in:
yflory 2025-03-07 16:43:17 +01:00
parent 1965c939b6
commit 10afbca9b0

View File

@ -1043,7 +1043,7 @@ define([
if (toggleClicked) { return; }
let visible = $tags.is(':visible');
// Small screen and visible: hide
if ($(window).width() < 500) {
if ($(window).width() < 600) {
if (visible) {
$(tags).show();
toggle();