Skip to content

Commit b6aad1b

Browse files
committed
chore: simplify styles
1 parent 79e65e5 commit b6aad1b

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

web/src/styles/commonStyles.ts

+2-14
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,9 @@
11
import { css } from "styled-components";
22

33
export const hoverShortTransitionTiming = css`
4-
:hover {
5-
transition: 0.1s;
6-
}
7-
8-
:not(:hover) {
9-
transition: 0.1s;
10-
}
4+
transition: 0.1s;
115
`;
126

137
export const hoverLongTransitionTiming = css`
14-
:hover {
15-
transition: 0.2s;
16-
}
17-
18-
:not(:hover) {
19-
transition: 0.2s;
20-
}
8+
transition: 0.2s;
219
`;

0 commit comments

Comments
 (0)