Skip to content

Commit

Permalink
fixup!
Browse files Browse the repository at this point in the history
  • Loading branch information
Saelmala committed Dec 3, 2024
1 parent 6c0a2c0 commit 1b5a999
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/manage-productions/line-table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ export const LineTable = ({
if (targetRow) {
const rect = targetRow.getBoundingClientRect();
setConfirmButtonPosition({
top: isMobile ? rect.top : rect.top - 10,
top: isMobile ? rect.top : rect.top - 8,
left: isMobile ? rect.left + 20 : rect.right + 10,
});
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/components/manage-productions/manage-productions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ const FlexContainer = styled.div<MobileLayout>`

const PageContainer = styled.div`
margin-left: ${isMobile ? "0" : "12rem"};
margin-right: ${isMobile ? "0" : "18rem"};
margin-right: ${isMobile ? "0" : "12rem"};
`;

export const ManageProductions = () => {
Expand Down

0 comments on commit 1b5a999

Please sign in to comment.