瀏覽代碼

prettier fix

Olivier Massot 1 年之前
父節點
當前提交
0a95fb1970
共有 2 個文件被更改,包括 8 次插入8 次删除
  1. 1 1
      .eslintrc.cjs
  2. 7 7
      components/Layout/Dialog.vue

+ 1 - 1
.eslintrc.cjs

@@ -30,7 +30,7 @@ module.exports = {
         allowModifiers: true,
       },
     ],
-    'vue/multi-word-component-names': 0
+    'vue/multi-word-component-names': 0,
   },
   globals: {
     useRuntimeConfig: 'readonly',

+ 7 - 7
components/Layout/Dialog.vue

@@ -100,13 +100,13 @@ const _show = computed(() => props.show) as boolean
   }
 }
 
-  .modal-level-warning {
-    .dialog-type {
-      background: rgb(var(--v-theme-warning, #f39c12));
-    }
+.modal-level-warning {
+  .dialog-type {
+    background: rgb(var(--v-theme-warning, #f39c12));
   }
+}
 
-  :deep(.v-card-actions) {
-    min-height: 62px;
-  }
+:deep(.v-card-actions) {
+  min-height: 62px;
+}
 </style>