1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 04:46:40 +07:00

fixed tag sidebar sidebar appearance

This commit is contained in:
Fedor Katurov 2022-01-17 12:57:43 +07:00
parent 155138a5dd
commit 237f978cbd
2 changed files with 38 additions and 32 deletions

View file

@ -8,6 +8,7 @@ import { InfiniteScroll } from '~/components/containers/InfiniteScroll';
import { Tag } from '~/components/tags/Tag'; import { Tag } from '~/components/tags/Tag';
import { useTagNodes } from '~/hooks/tag/useTagNodes'; import { useTagNodes } from '~/hooks/tag/useTagNodes';
import { DialogComponentProps } from '~/types/modal'; import { DialogComponentProps } from '~/types/modal';
import { SidebarStack } from '~/components/sidebar/SidebarStack';
interface TagSidebarProps extends DialogComponentProps { interface TagSidebarProps extends DialogComponentProps {
tag: string; tag: string;
@ -19,6 +20,7 @@ const TagSidebar: VFC<TagSidebarProps> = ({ tag, onRequestClose }) => {
return ( return (
<SidebarWrapper onClose={onRequestClose}> <SidebarWrapper onClose={onRequestClose}>
<SidebarStack>
<div className={styles.wrap}> <div className={styles.wrap}>
<div className={styles.content}> <div className={styles.content}>
<div className={styles.head}> <div className={styles.head}>
@ -56,6 +58,7 @@ const TagSidebar: VFC<TagSidebarProps> = ({ tag, onRequestClose }) => {
)} )}
</div> </div>
</div> </div>
</SidebarStack>
</SidebarWrapper> </SidebarWrapper>
); );
}; };

View file

@ -2,6 +2,8 @@
.wrap { .wrap {
@include sidebar_content(400px); @include sidebar_content(400px);
width: 100vw;
max-width: 400px;
} }
.content { .content {
@ -17,11 +19,12 @@
} }
.head { .head {
@include row_shadow;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
padding: $gap; padding: $gap;
box-shadow: transparentize(white, 0.95) 0 1px;
} }
.tag { .tag {