Skip to content

Commit 19ce1ae

Browse files
committed
fix(window): fix resize handle positioning
1 parent 244c90f commit 19ce1ae

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

src/components/Window/Window.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ const ResizeHandle = styled.span`
1515
${({ theme }) => css`
1616
display: inline-block;
1717
position: absolute;
18-
bottom: 4px;
19-
right: 4px;
18+
bottom: 10px;
19+
right: 10px;
2020
width: 25px;
2121
height: 25px;
2222
background-image: linear-gradient(
@@ -35,9 +35,6 @@ const ResizeHandle = styled.span`
3535
);
3636
background-size: 8.49px 8.49px;
3737
clip-path: polygon(100% 0px, 0px 100%, 100% 100%);
38-
border-width: 2px;
39-
border-style: solid;
40-
border-color: ${theme.material};
4138
cursor: nwse-resize;
4239
`}
4340
`;

0 commit comments

Comments
 (0)