aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/MDX/ResponsiveImage
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/MDX/ResponsiveImage')
-rw-r--r--src/components/MDX/ResponsiveImage/ResponsiveImage.module.scss50
-rw-r--r--src/components/MDX/ResponsiveImage/ResponsiveImage.tsx40
2 files changed, 0 insertions, 90 deletions
diff --git a/src/components/MDX/ResponsiveImage/ResponsiveImage.module.scss b/src/components/MDX/ResponsiveImage/ResponsiveImage.module.scss
deleted file mode 100644
index cf2b77f..0000000
--- a/src/components/MDX/ResponsiveImage/ResponsiveImage.module.scss
+++ /dev/null
@@ -1,50 +0,0 @@
-@use "@styles/abstracts/functions" as fun;
-
-.wrapper {
- width: 100%;
- max-width: 100%;
- margin: var(--spacing-sm) auto;
- position: relative;
- text-align: center;
-}
-
-.caption {
- margin: 0;
- padding: fun.convert-px(4) var(--spacing-2xs);
- background: var(--color-bg-secondary);
- border: fun.convert-px(1) solid var(--color-border);
- box-shadow: 0 fun.convert-px(-1) fun.convert-px(1) fun.convert-px(1)
- var(--color-shadow-light);
- font-weight: 500;
-}
-
-.link {
- display: flex;
- flex-flow: column;
- background: none;
- text-decoration: none;
-
- .caption {
- color: var(--color-primary-darker);
- }
-
- &:hover,
- &:focus {
- transform: scale(1.1);
- }
-
- &:focus {
- .caption {
- text-decoration: underline solid var(--color-primary-darker)
- fun.convert-px(3);
- }
- }
-
- &:active {
- transform: scale(0.9);
-
- .caption {
- text-decoration: none;
- }
- }
-}
diff --git a/src/components/MDX/ResponsiveImage/ResponsiveImage.tsx b/src/components/MDX/ResponsiveImage/ResponsiveImage.tsx
deleted file mode 100644
index 6c39e7f..0000000
--- a/src/components/MDX/ResponsiveImage/ResponsiveImage.tsx
+++ /dev/null
@@ -1,40 +0,0 @@
-import { ResponsiveImageProps } from '@ts/types/app';
-import Image from 'next/image';
-import Link from 'next/link';
-import styles from './ResponsiveImage.module.scss';
-
-const ResponsiveImage = (props: ResponsiveImageProps) => {
- const { caption, linkTarget, ...attributes } = props;
-
- return (
- <figure className={styles.wrapper}>
- {linkTarget ? (
- <Link href={linkTarget}>
- <a className={styles.link}>
- <Image
- alt={attributes.alt}
- layout={attributes.layout || 'intrinsic'}
- {...attributes}
- />
- {caption && (
- <figcaption className={styles.caption}>{caption}</figcaption>
- )}
- </a>
- </Link>
- ) : (
- <>
- <Image
- alt={attributes.alt}
- layout={attributes.layout || 'intrinsic'}
- {...attributes}
- />
- {caption && (
- <figcaption className={styles.caption}>{caption}</figcaption>
- )}
- </>
- )}
- </figure>
- );
-};
-
-export default ResponsiveImage;