Skip to content

Commit 7b7dc32

Browse files
committedMay 27, 2024
fix: floating-vue style
1 parent 946f930 commit 7b7dc32

File tree

4 files changed

+2
-3
lines changed

4 files changed

+2
-3
lines changed
 

‎packages/devtools/client/app.vue

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<script setup lang="ts">
22
import 'floating-vue/dist/style.css'
3+
import '@vue/devtools-applet/style.css'
34
import 'vanilla-jsoneditor/themes/jse-theme-dark.css'
45
import 'vue-virtual-scroller/dist/vue-virtual-scroller.css'
56
import './styles/global.css'

‎packages/devtools/client/pages/modules/components-tree.vue

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script setup lang="ts">
22
import { Components as VueComponents } from '@vue/devtools-applet'
3-
import '@vue/devtools-applet/style.css'
43
54
const { connected } = useVueDevToolsState()
65
const client = useClient()

‎packages/devtools/client/pages/modules/pinia.vue

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
<script setup lang="ts">
22
import { Pinia } from '@vue/devtools-applet'
3-
import '@vue/devtools-applet/style.css'
43
54
const { connected } = useVueDevToolsState()
65

‎packages/devtools/client/styles/global.css

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ html.dark {
2222
.v-popper--theme-dropdown .v-popper__inner,
2323
.v-popper--theme-tooltip .v-popper__inner {
2424
--at-apply: bg-base text-black dark-text-white;
25-
--at-apply: rounded border border-base shadow;
25+
--at-apply: rounded border border-base! shadow;
2626
box-shadow: 0 6px 30px #0000001a;
2727
}
2828

0 commit comments

Comments
 (0)
Please sign in to comment.