fullscreen

This commit is contained in:
2022-11-29 21:36:30 +03:00
parent 4420c697ad
commit 8405acb27d
3 changed files with 45 additions and 2 deletions
+13
View File
@@ -276,4 +276,17 @@ export const Circle = styled.circle<{ circumference: number; percent: number }>`
stroke-dashoffset: ${({ circumference, percent }) => circumference - percent / 100 * circumference};
`;
export const FullScreenButton = styled.button`
padding: 24px;
position: absolute;
top: 50px;
right: 50px;
`;
export const InputHolder = styled.div`
background-color: rgba(0, 0, 0, .0);
width: calc(100% - 70px);
height: 100%;
right: 70px;
position: absolute;
`;