Skip to content

Commit

Permalink
fix(docs): design for flex playground on fullscreen + dark mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rstoenescu committed Jul 31, 2023
1 parent 2fd01c3 commit 58e4fd3
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
@click="toggleFullscreen"
:icon="$q.fullscreen.isActive ? 'fullscreen_exit' : 'fullscreen'"
:label="$q.fullscreen.isActive ? 'Exit Fullscreen' : 'Try playground in Fullscreen'"
no-caps
/>
</div>

Expand Down Expand Up @@ -327,7 +328,7 @@ const classes = computed(() => {
})
const resultClasses = computed(() => ($q.dark.isActive ? 'bg-grey-9 text-white' : 'bg-grey-2 text-dark'))
const demoClasses = computed(() => ($q.fullscreen.isActive ? 'bg-white q-pa-md' : null))
const demoClasses = computed(() => ($q.fullscreen.isActive ? 'doc-technical q-pa-md' : null))
const containerClass = computed(() => `flex-playground-demo__container--${ $q.dark.isActive ? 'dark' : 'light' }`)
function toggleFullscreen () {
Expand Down

0 comments on commit 58e4fd3

Please sign in to comment.