Skip to content

Commit

Permalink
Align SecondaryIconsContainer vertically
Browse files Browse the repository at this point in the history
  • Loading branch information
lilia1891 committed Jan 14, 2025
1 parent b2b5737 commit a250cbd
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions components/actions/ActionCard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ const SecondaryIcon = styled(SVG)`
`;

const SecondaryIconsContainer = styled.div`
display: flex;
justify-content: flex-end;
margin-top: auto;
text-align: right;
padding: 0 ${(props) => props.theme.spaces.s050}
${(props) => props.theme.spaces.s050};
Expand All @@ -75,6 +78,9 @@ const ActionCardElement = styled.div<{
$isHighlighted: boolean;
}>`
position: relative;
display: flex;
flex-direction: column;
height: 100%;
width: 100%;
background: ${(props) => props.theme.themeColors.white};
border-width: ${(props) => props.theme.cardBorderWidth};
Expand Down

0 comments on commit a250cbd

Please sign in to comment.