mirror of
https://github.com/graphql-hive/console
synced 2026-05-23 00:58:36 +00:00
Add missing global attribute to style jsx fixing Chat position (#5595)
This commit is contained in:
parent
76cba8278c
commit
b4244e6e58
1 changed files with 3 additions and 1 deletions
|
|
@ -10,7 +10,9 @@ export function Page(props: { children: ReactNode; className?: string }) {
|
|||
<div className={cn('flex h-full flex-col', props.className)}>{props.children}</div>
|
||||
{mounted && <CookiesConsent />}
|
||||
{/* position Crisp button below the cookies banner */}
|
||||
<style jsx>{' .crisp-client { z-index: 40 !important; '}</style>
|
||||
<style jsx global>
|
||||
{' .crisp-client { z-index: 40 !important; '}
|
||||
</style>
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue