fix(ui): Styling fix for css regression (#13077)

Co-authored-by: John Joyce <john@Mac-32.lan>
This commit is contained in:
John Joyce 2025-04-07 15:52:14 -07:00 committed by GitHub
parent ffb4b5f627
commit f758785cee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ const ActionList = styled.div`
align-items: center;
justify-content: center;
padding: 0px 20px;
gap: 8px;
`;
type Props = {

View File

@ -16,6 +16,7 @@ const ActionList = styled.div<{ $shouldRightAlign?: boolean }>`
justify-content: end;
padding: ${(props) => (props.$shouldRightAlign ? '0px' : '0px 10px')};
margin-left: ${(props) => (props.$shouldRightAlign ? 'auto' : undefined)};
gap: 8px;
`;
type Props = {