850258e963
* Add showSegmentation state. Update this state on completion of segmentation. * feat(fe2): swaps h-screen to h-[100dvh] to ensure onboarding slideshow comments are not below the bottom of the screen when on mobile (and browser bar gets in the way) * feat(fe2): shows selection info/comments on mobile if we're past the onboarding tour * feat(fe2): displays a smaller message in onboarding on mobile rather than the full checklist * feat(fe2): moves isSmallerOrEqualSm to a composable, and removes duplicated code --------- Co-authored-by: andrewwallacespeckle <139135120+andrewwallacespeckle@users.noreply.github.com>
8 lines
134 B
Vue
8 lines
134 B
Vue
<template>
|
|
<div class="w-screen h-[100dvh] overflow-hidden">
|
|
<ClientOnly>
|
|
<slot />
|
|
</ClientOnly>
|
|
</div>
|
|
</template>
|