mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-09-18 16:05:33 -04:00
stop being lazy with css selectors
This commit is contained in:
@@ -6,6 +6,6 @@
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.wrapper img {
|
||||
.image {
|
||||
border-radius: var(--rounded-edge-radius);
|
||||
}
|
||||
|
@@ -42,7 +42,7 @@ const CustomImage = ({
|
||||
return (
|
||||
<div className={classNames(styles.wrapper, className)}>
|
||||
{/* @ts-ignore */}
|
||||
<NextImage {...imageProps} {...rest} />
|
||||
<NextImage className={styles.image} {...imageProps} {...rest} />
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
Reference in New Issue
Block a user