From a9068bf93b7e5e200c2e83ed6772bccbe6325a63 Mon Sep 17 00:00:00 2001 From: bendtherules Date: Sat, 31 Oct 2020 10:11:29 +0530 Subject: [PATCH] MDNBadge - Fix inline style --- components/MDNBadge.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/MDNBadge.jsx b/components/MDNBadge.jsx index df61ed7..71ad64b 100644 --- a/components/MDNBadge.jsx +++ b/components/MDNBadge.jsx @@ -3,8 +3,8 @@ import styles from "./MDNBadge.module.css"; export default function MDNBadge({ title, url, i }) { // i stands for "is inline?" - default false - const wrapperClass = i ? wrapperInline : styles.wrapperBlock; - const imgClass = i ? imgInline : styles.imgBlock; + const wrapperClass = i ? styles.wrapperInline : styles.wrapperBlock; + const imgClass = i ? styles.imgInline : styles.imgBlock; return (