Skip to content

Commit

Permalink
ping-viewer-next-frontend: Fix: remove backgorund for widgets loaded …
Browse files Browse the repository at this point in the history
…from route
  • Loading branch information
RaulTrombin committed Dec 9, 2024
1 parent 1258ba0 commit 8ce4637
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ping-viewer-next-frontend/src/App.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<template v-if="isWidgetRoute">
<v-app class="h-screen w-screen">
<v-app class="h-screen w-screen bg-transparent " :theme="theme">
<router-view />
</v-app>
</template>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="flex flex-col h-full bg-gray-900 p-4" ref="containerRef">
<div class="flex flex-col h-full bg-transparent p-4" ref="containerRef">
<WaterfallDisplay
:width="width"
:height="height"
Expand Down
2 changes: 1 addition & 1 deletion ping-viewer-next-frontend/src/layouts/default.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-app>
<v-app class="bg-transparent">
<v-main>
<router-view />
</v-main>
Expand Down
2 changes: 1 addition & 1 deletion ping-viewer-next-frontend/src/plugins/vuetify.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default createVuetify({
VNumberInput,
},
theme: {
defaultTheme: 'dark',
defaultTheme: 'light',
themes: {
light: {
dark: false,
Expand Down

0 comments on commit 8ce4637

Please sign in to comment.