Skip to content

Commit

Permalink
remove btn class
Browse files Browse the repository at this point in the history
  • Loading branch information
caroluchoa authored Mar 27, 2024
1 parent 2f1596a commit b78c1c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sections/Theme/Theme.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -539,11 +539,11 @@ const PreviewContainer = (
<div>
<input type="checkbox" id={checkboxId} className="sr-only" />
{/* Label for "Show code" */}
<label htmlFor={checkboxId} className={`btn btn-sm absolute right-4 top-4 ${btnOutlineClass} show-label`}>
<label htmlFor={checkboxId} className={`btn-sm absolute right-4 top-4 ${btnOutlineClass} show-label`}>
Show code
</label>
{/* Label for "Hide code" */}
<label htmlFor={checkboxId} className={`btn btn-sm absolute right-4 top-4 ${btnOutlineClass} hide-label`}>
<label htmlFor={checkboxId} className={`btn-sm absolute right-4 top-4 ${btnOutlineClass} hide-label`}>
Hide code
</label>
<div id={codeBlockId} className={`mt-4 mb-2 text-xs md:text-sm ${mode === "dark" ? "bg-slate-800" : "bg-slate-100"}`}>
Expand Down

0 comments on commit b78c1c7

Please sign in to comment.