1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-13 19:55:26 -04:00

stop being lazy with css selectors

This commit is contained in:
2022-01-30 11:38:37 -05:00
parent 9f34cec930
commit f0259dbab5
24 changed files with 498 additions and 471 deletions
+1 -1
View File
@@ -6,6 +6,6 @@
text-align: center;
}
.wrapper img {
.image {
border-radius: var(--rounded-edge-radius);
}
+1 -1
View File
@@ -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>
);
};