Skip to content

Commit a622899

Browse files
committed
chore: improve styles
1 parent c67a17c commit a622899

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

packages/devtools/src/app/components/data/ChunkDetails.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ defineProps<{
2424
</div>
2525
</div>
2626

27-
<div op50>
27+
<!-- TODO -->
28+
<!-- <div op50>
2829
Imports
2930
</div>
3031
<div flex="~ col gap-1" ws-nowrap>
31-
<!-- TODO: -->
3232
{{ chunk.imports }}
33-
</div>
33+
</div> -->
3434

3535
<div op50>
3636
Modules

packages/devtools/src/app/components/data/ModuleImportRelationships.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,8 +70,8 @@ function getLinkColor(_link: Link) {
7070
7171
function calculateGraph() {
7272
// Unset the canvas size, and recalculate again after nodes are rendered
73-
width.value = window.innerWidth
74-
height.value = window.innerHeight
73+
width.value = window.innerWidth * 0.8
74+
height.value = window.innerHeight * 0.8
7575
const seen = new Set<ModuleListItem>()
7676
7777
// build imports graph

packages/devtools/src/app/pages/session/[session]/plugins.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ defineProps<{
1414

1515
<div flex="~ col gap-1">
1616
<template v-for="plugin in session.meta.plugins" :key="plugin.id">
17-
<div font-mono>
17+
<div font-mono border="~ rounded base" px2 py1 text-sm hover="bg-active">
1818
<DisplayPluginName :name="plugin.name" />
1919
</div>
2020
</template>

0 commit comments

Comments
 (0)