Skeleton: Fix user-select: none for firefox

This commit is contained in:
2025-02-26 21:10:31 +01:00
parent cb8eb26d22
commit f63d143ba5

View File

@ -18,6 +18,6 @@
<!-- Prefetch data specified in "load" functions on link hover --> <!-- Prefetch data specified in "load" functions on link hover -->
<body data-theme="formula11Theme" data-sveltekit-preload-data="hover"> <body data-theme="formula11Theme" data-sveltekit-preload-data="hover">
<!-- SvelteKit inserts the body contents here --> <!-- SvelteKit inserts the body contents here -->
<div style="display: contents; user-select: none">%sveltekit.body%</div> <div style="display: contents; user-select: none; -moz-user-select: none">%sveltekit.body%</div>
</body> </body>
</html> </html>