Skip to content

Commit

Permalink
Merge pull request #214 from mobeigi/fix-styling-in-person-showcase
Browse files Browse the repository at this point in the history
Fix icon SVG colors and alignment on mobile
  • Loading branch information
mobeigi authored Oct 30, 2024
2 parents 9198904 + 4e9b784 commit f5f620a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/src/components/PersonShowcase/PersonShowcase.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { IconWrapper } from '@/styles/icon';
import {
HeaderRows,
Headshot,
Expand All @@ -8,6 +7,7 @@ import {
InfoArea,
StyledHeading,
Tagline,
CustomIconWrapper as IconWrapper,
} from './styled';
import MapPinSvg from '@/assets/icons/boxicons/bx-map-pin.svg';
import LanguageOutlineSvg from '@/assets/icons/misc/language-outline.svg';
Expand Down
5 changes: 4 additions & 1 deletion app/src/components/PersonShowcase/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ export const InfoArea = styled.span`
color: var(--theme-text-subtle);
`;

export const Info = styled.span``;
export const Info = styled.span`
display: flex;
align-items: center;
`;

export const CustomIconWrapper = styled(IconWrapper)`
svg {
Expand Down

0 comments on commit f5f620a

Please sign in to comment.