Skip to content

Commit

Permalink
feat: place lock at the top-right corner
Browse files Browse the repository at this point in the history
  • Loading branch information
belopash committed Oct 24, 2024
1 parent 569032d commit 10932b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions src/pages/WorkersPage/WorkerUndelegate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@ export function WorkerUndelegate({
sx={{
color: '#3e4a5c',
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
top: '0px',
right: '0px',
transform: 'translate(0%, -25%)',
zIndex: 1,
}}
/>
Expand Down
6 changes: 3 additions & 3 deletions src/pages/WorkersPage/WorkerWithdraw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ export function WorkerWithdrawButton({
sx={{
color: '#3e4a5c',
position: 'absolute',
top: '50%',
left: '50%',
transform: 'translate(-50%, -50%)',
top: '0px',
right: '0px',
transform: 'translate(0%, -25%)',
zIndex: 1,
}}
/>
Expand Down

0 comments on commit 10932b2

Please sign in to comment.