diff --git a/web/components/action-buttons/ActionButtons.module.scss b/web/components/action-buttons/ActionButtons.module.scss index 709b35d27..6e64c367d 100644 --- a/web/components/action-buttons/ActionButtons.module.scss +++ b/web/components/action-buttons/ActionButtons.module.scss @@ -1,10 +1,10 @@ .row { - margin: 5px; + padding: .3rem; display: flex; align-items: center; justify-content: flex-end; button { - margin-left: 5px; - margin-right: 5px; + margin-left: .3rem; + margin-right: .3rem; } } diff --git a/web/components/action-buttons/FollowButton.tsx b/web/components/action-buttons/FollowButton.tsx index ae9f5a787..4c4357321 100644 --- a/web/components/action-buttons/FollowButton.tsx +++ b/web/components/action-buttons/FollowButton.tsx @@ -8,7 +8,7 @@ import s from './ActionButton.module.scss'; import { clientConfigStateAtom } from '../stores/ClientConfigStore'; import { ClientConfig } from '../../interfaces/client-config.model'; -export default function FollowButton() { +export default function FollowButton(props: any) { const [showModal, setShowModal] = useState(false); const clientConfig = useRecoilValue(clientConfigStateAtom); const { name } = clientConfig; @@ -20,8 +20,9 @@ export default function FollowButton() { return ( <>