From c4e376816d42cfd2f0e596791030b4fda52bf122 Mon Sep 17 00:00:00 2001 From: Alex Gleason Date: Fri, 29 Apr 2022 21:51:48 -0500 Subject: [PATCH] ProfileField: style verified links --- .../ui/components/profile_fields_panel.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/app/soapbox/features/ui/components/profile_fields_panel.tsx b/app/soapbox/features/ui/components/profile_fields_panel.tsx index 01e0c55af..dbe02c5df 100644 --- a/app/soapbox/features/ui/components/profile_fields_panel.tsx +++ b/app/soapbox/features/ui/components/profile_fields_panel.tsx @@ -2,7 +2,7 @@ import classNames from 'classnames'; import React from 'react'; import { defineMessages, useIntl, FormattedMessage, FormatDateOptions } from 'react-intl'; -import { Widget, Stack, Icon, Text } from 'soapbox/components/ui'; +import { Widget, Stack, HStack, Icon, Text } from 'soapbox/components/ui'; import BundleContainer from 'soapbox/features/ui/containers/bundle_container'; import { CryptoAddress } from 'soapbox/features/ui/util/async-components'; @@ -55,16 +55,18 @@ const ProfileField: React.FC = ({ field }) => {
- {field.verified_at && ( - - - - )} + + {field.verified_at && ( + + + + )} - + +
);