Skip to content

Commit

Permalink
fix: more css tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
abernier committed Aug 17, 2024
1 parent ab7fbd6 commit 0f88902
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Codesandbox.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export default function Codesandbox({
<a href={`https://codesandbox.io/s/${id}`} target="_blank" rel="noreferrer">
{screenshot_url && (
<Image
className="rounded shadow-lg"
className="rounded-lg"
src={screenshot_url}
placeholder="empty"
alt={title}
Expand Down
2 changes: 1 addition & 1 deletion src/components/mdx/Hint.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const Hint = ({ children }: { children: React.ReactNode }) => {
return (
<div className="hint overflow-clip bg-yellow-100 border-b border-gray-200 rounded-lg px-6 py-4 mb-6 dark:text-gray-500">
<div className="hint overflow-clip bg-yellow-100 rounded-lg px-6 py-4 my-6 dark:text-gray-500">
{children}
</div>
)
Expand Down

0 comments on commit 0f88902

Please sign in to comment.