fix: prevent horizontal body overflow on firefox
parent
cf2d22cb5e
commit
5c5143d2c9
|
@ -6,6 +6,9 @@ const isPreview = window.location.hostname.includes('deploy-preview')
|
||||||
export function usePageHeader() {
|
export function usePageHeader() {
|
||||||
useHead({
|
useHead({
|
||||||
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
titleTemplate: title => `${title ? `${title} | ` : ''}${APP_NAME}${isDev ? ' (dev)' : isPreview ? ' (preview)' : ''}`,
|
||||||
|
bodyAttrs: {
|
||||||
|
class: 'overflow-x-hidden',
|
||||||
|
},
|
||||||
link: [
|
link: [
|
||||||
{ rel: 'icon', type: 'image/svg+png', href: isDev || isPreview ? '/favicon-dev.png' : '/favicon.png' },
|
{ rel: 'icon', type: 'image/svg+png', href: isDev || isPreview ? '/favicon-dev.png' : '/favicon.png' },
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue