Update header z index (#194)

This commit is contained in:
Ilya Y 2023-08-26 12:41:21 +03:00 committed by GitHub
parent 8e26824554
commit f423f22741
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 18 additions and 17 deletions

View File

@ -24,7 +24,7 @@ import { AudioPlayer } from './AudioPlayer'
import { SharePopup } from './SharePopup'
import { ShoutRatingControl } from './ShoutRatingControl'
import { CommentsTree } from './CommentsTree'
import stylesHeader from '../Nav/Header.module.scss'
import stylesHeader from '../Nav/Header/Header.module.scss'
import { AudioHeader } from './AudioHeader'
import { Popover } from '../_shared/Popover'

View File

@ -7,7 +7,7 @@ import { clsx } from 'clsx'
import { CardTopic } from './CardTopic'
import { ShoutRatingControl } from '../Article/ShoutRatingControl'
import { getShareUrl, SharePopup } from '../Article/SharePopup'
import stylesHeader from '../Nav/Header.module.scss'
import stylesHeader from '../Nav/Header/Header.module.scss'
import { getDescription } from '../../utils/meta'
import { FeedArticlePopup } from './FeedArticlePopup'
import { useLocalize } from '../../context/localize'

View File

@ -5,7 +5,7 @@
margin-bottom: 2.2rem;
position: absolute;
width: 100%;
z-index: 10;
z-index: 10000;
.wide-container {
background: #fff;

View File

@ -2,21 +2,21 @@ import { Show, createSignal, createEffect, onMount, onCleanup } from 'solid-js'
import { getPagePath, redirectPage } from '@nanostores/router'
import { clsx } from 'clsx'
import { Modal } from './Modal'
import { AuthModal } from './AuthModal'
import { HeaderAuth } from './HeaderAuth'
import { ConfirmModal } from './ConfirmModal'
import { getShareUrl, SharePopup } from '../Article/SharePopup'
import { Snackbar } from './Snackbar'
import { Icon } from '../_shared/Icon'
import { Modal } from '../Modal'
import { AuthModal } from '../AuthModal'
import { HeaderAuth } from '../HeaderAuth'
import { ConfirmModal } from '../ConfirmModal'
import { getShareUrl, SharePopup } from '../../Article/SharePopup'
import { Snackbar } from '../Snackbar'
import { Icon } from '../../_shared/Icon'
import { useModalStore } from '../../stores/ui'
import { router, useRouter } from '../../stores/router'
import { useModalStore } from '../../../stores/ui'
import { router, useRouter } from '../../../stores/router'
import { getDescription } from '../../utils/meta'
import { getDescription } from '../../../utils/meta'
import { useLocalize } from '../../context/localize'
import { useSession } from '../../context/session'
import { useLocalize } from '../../../context/localize'
import { useSession } from '../../../context/session'
import styles from './Header.module.scss'

View File

@ -0,0 +1 @@
export { Header } from './Header'

View File

@ -1,4 +1,4 @@
import styles from './Header.module.scss'
import styles from './Header/Header.module.scss'
import { clsx } from 'clsx'
import { router, useRouter } from '../../stores/router'
import { Icon } from '../_shared/Icon'

View File

@ -10,7 +10,7 @@
position: fixed;
top: 0;
width: 100%;
z-index: 100;
z-index: 11000;
}
.modal {