Skip to content

Commit

Permalink
fix: remove the unnecessary rounded style (#2581)
Browse files Browse the repository at this point in the history
Co-authored-by: Brenda Rearden <brendarearden@gmail.com>
  • Loading branch information
kohkimakimoto and brendarearden committed May 16, 2024
1 parent 0db1409 commit c8932b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/elements-core/src/components/TryIt/TryIt.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ export const TryIt: React.FC<TryItProps> = ({
);
} else {
tryItPanelElem = (
<Box className="TryItPanel" bg="canvas-100" rounded="lg">
<Box className="TryItPanel" bg="canvas-100">
{tryItPanelContents}
</Box>
);
Expand Down

0 comments on commit c8932b0

Please sign in to comment.