mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 12:56:41 +07:00
fixed LoaderCircle size on flow hero
This commit is contained in:
parent
bf16c0ca22
commit
65d13afab9
2 changed files with 2 additions and 1 deletions
|
@ -64,6 +64,7 @@ const FlowHeroUnconnected: FC<IProps> = ({ heroes }) => {
|
||||||
src={getURL({ url: hero.thumbnail }, preset)}
|
src={getURL({ url: hero.thumbnail }, preset)}
|
||||||
key={hero.id}
|
key={hero.id}
|
||||||
onLoad={() => onLoad(i)}
|
onLoad={() => onLoad(i)}
|
||||||
|
alt=""
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -69,7 +69,7 @@ export const FlowSwiperHero: FC<Props> = ({ heroes }) => {
|
||||||
if (!heroes.length) {
|
if (!heroes.length) {
|
||||||
return (
|
return (
|
||||||
<div className={styles.loader}>
|
<div className={styles.loader}>
|
||||||
<LoaderCircle size={100} fill="currentColor" />
|
<LoaderCircle size={200} fill="currentColor" />
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue