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:
parent
1730421f27
commit
10b013f9a8
4 changed files with 4 additions and 3 deletions
|
@ -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>
|
||||
|
|
|
@ -30,7 +30,7 @@
|
|||
border-radius: $radius;
|
||||
background: no-repeat 50% 50%;
|
||||
background-size: cover;
|
||||
opacity: 0;
|
||||
opacity: 0.3;
|
||||
}
|
||||
|
||||
.progress {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue