Skip to content

Commit

Permalink
chore: simplify styles
Browse files Browse the repository at this point in the history
  • Loading branch information
kemuru committed Dec 16, 2024
1 parent 79e65e5 commit b6aad1b
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions web/src/styles/commonStyles.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,9 @@
import { css } from "styled-components";

export const hoverShortTransitionTiming = css`
:hover {
transition: 0.1s;
}
:not(:hover) {
transition: 0.1s;
}
transition: 0.1s;
`;

export const hoverLongTransitionTiming = css`
:hover {
transition: 0.2s;
}
:not(:hover) {
transition: 0.2s;
}
transition: 0.2s;
`;

0 comments on commit b6aad1b

Please sign in to comment.