Parcourir la source

fix(markup): добавлен select-none

horanchikk il y a 10 mois
Parent
commit
b519839e45
2 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 1 1
      layouts/default.vue
  2. 1 1
      layouts/none.vue

+ 1 - 1
layouts/default.vue

@@ -1,7 +1,7 @@
 <template>
   <div
     ref="globalWindow"
-    class="text-foreground flex flex-col w-screen h-screen bg-background-200 overflow-y-hidden"
+    class="text-foreground flex flex-col w-screen h-screen bg-background-200 overflow-y-hidden select-none"
   >
     <BaseSideBar />
     <BaseHeader />

+ 1 - 1
layouts/none.vue

@@ -1,5 +1,5 @@
 <template>
-  <div class="flex flex-col w-screen h-screen bg-background-100 text-foreground">
+  <div class="flex flex-col w-screen h-screen bg-background-100 text-foreground select-none">
     <main class="flex-auto">
       <slot />
     </main>