Skip to content

Commit

Permalink
Merge pull request #223 from spencerwahl/fullscreen-fix
Browse files Browse the repository at this point in the history
Fix fullscreen using wrong map (#223)
  • Loading branch information
spencerwahl authored Jun 1, 2023
2 parents c274078 + 0461aff commit d47f976
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
6 changes: 3 additions & 3 deletions public/scripts/multi-ramp/rv-main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/scripts/multi-ramp/rv-main.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/panels/panel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<div
:class="
config.type !== 'text'
? `sticky ${config.type === 'map' ? 'top-16' : 'top-8'} sm:self-start flex-2 order-1 sm:order-2 z-40`
? `sticky ${config.type === 'map' ? 'top-16' : 'top-8'} sm:self-start flex-2 order-1 sm:order-2 z-50`
: 'flex order-2 sm:order-1'
"
class="flex-col relative"
Expand Down
6 changes: 5 additions & 1 deletion src/components/story/story.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<div v-else-if="loadStatus === 'loaded'">
<div class="storyramp-app bg-white">
<header class="sticky top-0 z-50 w-full h-16 leading-9 bg-white border-b border-gray-200">
<header class="story-header sticky top-0 z-50 w-full h-16 leading-9 bg-white border-b border-gray-200">
<div class="flex w-full sm:px-6 py-3 mx-auto">
<MobileMenuV
class="mobile-menu"
Expand Down Expand Up @@ -186,6 +186,10 @@ $font-list: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
}
.story-header {
z-index: 60;
}
@media screen and (min-width: 640px) {
.mobile-menu {
display: none !important;
Expand Down

0 comments on commit d47f976

Please sign in to comment.