1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-26 05:16:41 +07:00

tried to fix image grid, but got no results

This commit is contained in:
muerwre 2019-08-08 15:48:25 +07:00
parent 1730421f27
commit 10b013f9a8
4 changed files with 4 additions and 3 deletions

View file

@ -20,7 +20,7 @@ const ImageUpload: FC<IProps> = ({
return (
<div className={styles.wrap}>
<div className={classNames(styles.thumb_wrap, { is_uploading })}>
{thumb && <div className={styles.thumb} style={{ background: `url("${thumb}")` }} />}
{thumb && <div className={styles.thumb} style={{ background: `url("${thumb}")` }}>{id}</div>}
{is_uploading && <div className={styles.progress}><ArcProgress size={72} progress={progress} /></div>}
</div>
</div>

View file

@ -30,7 +30,7 @@
border-radius: $radius;
background: no-repeat 50% 50%;
background-size: cover;
opacity: 0;
opacity: 0.3;
}
.progress {