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

fixed left panel styles

This commit is contained in:
Fedor Katurov 2021-09-22 10:32:10 +07:00
parent e2a69b2b2e
commit c1279c538a
2 changed files with 6 additions and 1 deletions

View file

@ -60,7 +60,7 @@ const NodeBottomBlock: FC<IProps> = ({
<div className={styles.panel}>
<StickyBox className={styles.sticky} offsetTop={72}>
<Group style={{ flex: 1, minWidth: 0 }}>
<Group className={styles.left}>
<NodeTagsBlock node={node} isLoading={isLoading} />
<NodeRelatedBlock isLoading={isLoading} node={node} related={related} />
</Group>

View file

@ -46,3 +46,8 @@
border-radius: $panel_radius;
box-shadow: $comment_shadow;
}
.left {
flex: 1;
min-width: 0;
}