Skip to content

Commit

Permalink
style: Polish style
Browse files Browse the repository at this point in the history
  • Loading branch information
miyanokomiya committed Feb 10, 2024
1 parent a81732d commit d4ffc7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/molecules/CommandExamPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const CommandExamPanel: React.FC<Props> = ({ commandExams }) => {
}, [commandExams]);

return (
<div className="transition-opacity duration-300" style={{ opacity }}>
<div className="transition-opacity duration-500 bg-gray-300 bg-opacity-80 px-2 rounded" style={{ opacity }}>
{commandExams.map((c) => (
<div key={c.title} className="flex">
{c.command ? <div className="mr-2">{c.command}:</div> : undefined}
Expand Down

0 comments on commit d4ffc7d

Please sign in to comment.