fix: ql icons on load, text overflow in quicklink boxes

This commit is contained in:
Simon
2026-04-22 22:53:04 +02:00
parent 62ebc53875
commit 480c3d09e5
+2
View File
@@ -616,6 +616,7 @@ main {
transition: border-color .12s, background .12s, color .12s; transition: border-color .12s, background .12s, color .12s;
position: relative; cursor: pointer; position: relative; cursor: pointer;
line-height: 1.3; line-height: 1.3;
overflow-wrap: break-word; word-break: break-word; overflow: hidden;
} }
.ql-item:hover { background: var(--blue-50); border-color: var(--blue); color: var(--blue); } .ql-item:hover { background: var(--blue-50); border-color: var(--blue); color: var(--blue); }
.ql-icon { font-size: 18px; line-height: 1; } .ql-icon { font-size: 18px; line-height: 1; }
@@ -3023,6 +3024,7 @@ async function loadStudentAnnouncements(){
} }
// ── START ───────────────────────────────────────────────────── // ── START ─────────────────────────────────────────────────────
lucide.createIcons();
init(); init();
</script> </script>
</body> </body>