Skip to content

Commit

Permalink
feat(aci): adds StickyFooter component
Browse files Browse the repository at this point in the history
  • Loading branch information
natemoo-re committed Jan 6, 2025
1 parent d19a15e commit d4cc018
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions static/app/components/workflowEngine/form.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import styled from '@emotion/styled';

import {space} from 'sentry/styles/space';

export const StickyFooter = styled('div')`
position: sticky;
bottom: 0;
right: 0;
width: 100%;
padding: ${space(2)} ${space(4)};
background: ${p => p.theme.background};
border-top: 1px solid ${p => p.theme.translucentGray200};
box-shadow: 0px -4px 24px 0px rgba(43, 34, 51, 0.12);
display: flex;
align-items: center;
justify-content: space-between;
`;

0 comments on commit d4cc018

Please sign in to comment.