We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf9024d commit 6537dbdCopy full SHA for 6537dbd
src/rendered/components/Project/hooks/usePulls/usePulls.styles.ts
@@ -9,6 +9,7 @@ export const Empty = styled.div`
9
`;
10
11
export const Title = styled.div`
12
+ opacity: 0;
13
position: absolute;
14
top: -10px;
15
left: 15px;
@@ -64,6 +65,10 @@ export const WrapBlock = styled.div`
64
65
${Actions} {
66
opacity: 1;
67
}
68
+
69
+ ${Title} {
70
+ opacity: 1;
71
+ }
72
73
74
@media (prefers-color-scheme: dark) {
src/rendered/components/Project/hooks/usePulls/usePulls.tsx
@@ -83,7 +83,7 @@ export const usePulls = (project: Project) => {
83
))}
84
85
<Title>
86
- <span>Pull requests ({pullType})</span>
+ <span>Pull requests ({aliases[pullType]})</span>
87
</Title>
88
89
<Actions>
0 commit comments