🐛(frontend) fix modal backdrop z-index

Recent upgrade of ui-kit removed the z-index for
the modal backdrop, causing it to be hidden behind
other elements. This commit restores the z-index
 to ensure the modal backdrop is displayed correctly.
This commit is contained in:
Anthony LC
2025-09-02 14:45:57 +02:00
parent 648528499c
commit 814eb1f1a1

View File

@@ -38,6 +38,13 @@
);
}
/**
* Modal
*/
.c__modal__backdrop {
z-index: 1000;
}
/**
* Tooltip
*/