Skip to content

Commit

Permalink
add comment to inline styling of ThreeDot icon rotation
Browse files Browse the repository at this point in the history
  • Loading branch information
laila-rin committed Sep 17, 2024
1 parent 1d3723d commit e6d0649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Column/Column.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ export const Column = ({id, name, color, visible, index}: ColumnProps) => {
)}
{!isTemporary && !openedColumnSettings && (
<button title={t("Column.settings")} className="column__header-edit-button" onClick={() => setOpenedColumnSettings((o) => !o)}>
<ThreeDots className="column__header-edit-button-icon" style={{transform: "rotate(90deg)"}} />
<ThreeDots className="column__header-edit-button-icon" style={{transform: "rotate(90deg)"}} /> {/* inline style to avoid funky rotating behaviour when hovering */}
</button>
)}
</>
Expand Down

0 comments on commit e6d0649

Please sign in to comment.