Skip to content

Commit

Permalink
Fix safari showing blank (closes #42)
Browse files Browse the repository at this point in the history
  • Loading branch information
t2t2 committed Jun 4, 2019
1 parent 54e379b commit a013f74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/panel.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div
:class="{'color-editing-panel border p-2': editing}"
class="flex flex-col w-full h-full overflow-hidden"
class="flex flex-grow flex-col overflow-hidden"
>
<div
v-if="editing"
Expand Down Expand Up @@ -33,7 +33,7 @@
</div>
<div
v-if="!editing || isGrid"
class="h-full w-full overflow-hidden"
class="flex-grow overflow-hidden"
:class="contentClass"
>
<slot />
Expand Down
2 changes: 1 addition & 1 deletion src/components/tab.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<div class="h-full w-full overflow-hidden">
<div class="flex flex-grow overflow-hidden">
<Panel
v-if="rootPanel"
:id="tab.root"
Expand Down
2 changes: 1 addition & 1 deletion src/components/views/dashboard.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div class="flex flex-col">
<div
class="h-full w-full flex"
class="flex flex-grow"
:class="{'color-editing': editing}"
>
<tab
Expand Down

0 comments on commit a013f74

Please sign in to comment.