Add box shadow

This commit is contained in:
Jeremy Thomas
2024-06-27 04:19:20 +01:00
parent ff3ffb12ef
commit 7ac0831470
6 changed files with 27 additions and 166 deletions

View File

@@ -1,8 +1,6 @@
import { useContext, useEffect, useState } from "react";
import { CustomizerContext } from "../App";
import Highlighter from "components/Highlighter";
import cn from "./Export.module.css";
function Export() {
@@ -114,11 +112,7 @@ function Export() {
)}
</div>
{css && (
<Highlighter PreTag="div" language="css">
{css.trim()}
</Highlighter>
)}
{css && <pre className={cn.pre}>{css.trim()}</pre>}
</div>
);
}