mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
hiding empty samples
This commit is contained in:
parent
0d042d4a09
commit
a9da7e8cef
3 changed files with 5 additions and 5 deletions
|
@ -2,7 +2,7 @@
|
||||||
filter: blur(0);
|
filter: blur(0);
|
||||||
transition: filter 0.25s;
|
transition: filter 0.25s;
|
||||||
will-change: filter;
|
will-change: filter;
|
||||||
// max-height: 100vh;
|
max-height: 100vh;
|
||||||
// width: 100vw;
|
width: 100vw;
|
||||||
// overflow: visible auto;
|
overflow: visible auto;
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.wrap {
|
.wrap {
|
||||||
position: absolute;
|
position: fixed;
|
||||||
top: 0;
|
top: 0;
|
||||||
left: 0;
|
left: 0;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
|
|
|
@ -129,7 +129,7 @@ const NodeLayoutUnconnected: FC<IProps> = memo(
|
||||||
<NodeRelated title={album} items={related.albums[album]} />
|
<NodeRelated title={album} items={related.albums[album]} />
|
||||||
))}
|
))}
|
||||||
|
|
||||||
{related && related.similar && (
|
{related && related.similar && related.similar.length > 0 && (
|
||||||
<NodeRelated title="ПОХОЖИЕ" items={related.similar} />
|
<NodeRelated title="ПОХОЖИЕ" items={related.similar} />
|
||||||
)}
|
)}
|
||||||
</Group>
|
</Group>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue