diff --git a/app/soapbox/features/crypto_donate/components/crypto_address.js b/app/soapbox/features/crypto_donate/components/crypto_address.js
index 0eba72655..f525c4c64 100644
--- a/app/soapbox/features/crypto_donate/components/crypto_address.js
+++ b/app/soapbox/features/crypto_donate/components/crypto_address.js
@@ -42,7 +42,7 @@ class CryptoAddress extends ImmutablePureComponent {
{explorerUrl &&
-
+
}
diff --git a/app/soapbox/features/crypto_donate/components/crypto_donate_panel.js b/app/soapbox/features/crypto_donate/components/crypto_donate_panel.js
index 1cc3aef73..d17f421bb 100644
--- a/app/soapbox/features/crypto_donate/components/crypto_donate_panel.js
+++ b/app/soapbox/features/crypto_donate/components/crypto_donate_panel.js
@@ -4,6 +4,7 @@ import PropTypes from 'prop-types';
import { Link } from 'react-router-dom';
import { FormattedMessage } from 'react-intl';
import ImmutablePureComponent from 'react-immutable-pure-component';
+import Icon from 'soapbox/components/icon';
import SiteWallet from './site_wallet';
import { List as ImmutableList } from 'immutable';
import classNames from 'classnames';
@@ -44,7 +45,7 @@ class CryptoDonatePanel extends ImmutablePureComponent {
return (
-
+
diff --git a/app/soapbox/features/crypto_donate/components/detailed_crypto_address.js b/app/soapbox/features/crypto_donate/components/detailed_crypto_address.js
index 0382291c0..3dcc67921 100644
--- a/app/soapbox/features/crypto_donate/components/detailed_crypto_address.js
+++ b/app/soapbox/features/crypto_donate/components/detailed_crypto_address.js
@@ -32,7 +32,7 @@ export default class DetailedCryptoAddress extends ImmutablePureComponent {
{title || ticker.toUpperCase()}
diff --git a/app/soapbox/features/ui/components/funding_panel.js b/app/soapbox/features/ui/components/funding_panel.js
index 90728caaa..64e00c1b0 100644
--- a/app/soapbox/features/ui/components/funding_panel.js
+++ b/app/soapbox/features/ui/components/funding_panel.js
@@ -41,7 +41,7 @@ class FundingPanel extends ImmutablePureComponent {
return (
-
+
Funding Goal
diff --git a/app/soapbox/features/ui/components/subscription_button.js b/app/soapbox/features/ui/components/subscription_button.js
index ae9471b4f..131f55b9a 100644
--- a/app/soapbox/features/ui/components/subscription_button.js
+++ b/app/soapbox/features/ui/components/subscription_button.js
@@ -59,7 +59,7 @@ class SubscriptionButton extends ImmutablePureComponent {
title={intl.formatMessage(subscribing ? messages.unsubscribe : messages.subscribe, { name: account.get('username') })}
onClick={this.handleSubscriptionToggle}
>
-
+
{subscribing && intl.formatMessage(messages.subscribed)}
);
diff --git a/app/styles/components/account-header.scss b/app/styles/components/account-header.scss
index 22822d96e..561e66307 100644
--- a/app/styles/components/account-header.scss
+++ b/app/styles/components/account-header.scss
@@ -24,8 +24,9 @@
.subscription-button {
color: var(--primary-text-color);
margin-bottom: 4px;
- display: block;
- vertical-align: top;
+ display: flex;
+ align-items: center;
+ justify-content: center;
background-color: var(--background-color);
text-transform: uppercase;
font-size: 13px;
@@ -43,6 +44,11 @@
&:not(.button-active) i.fa {
margin: 0;
}
+
+ .svg-icon {
+ width: 20px;
+ height: 20px;
+ }
}
}
diff --git a/app/styles/components/crypto-donate.scss b/app/styles/components/crypto-donate.scss
index 21168de74..4c42ccdeb 100644
--- a/app/styles/components/crypto-donate.scss
+++ b/app/styles/components/crypto-donate.scss
@@ -37,6 +37,10 @@
color: var(--primary-text-color--faint);
margin-left: 10px;
}
+
+ i.fa {
+ font-size: 20px;
+ }
}
&__note {
diff --git a/app/styles/components/wtf-panel.scss b/app/styles/components/wtf-panel.scss
index f682411c6..b9530646b 100644
--- a/app/styles/components/wtf-panel.scss
+++ b/app/styles/components/wtf-panel.scss
@@ -18,13 +18,18 @@
.wtf-panel-header {
display: flex;
- align-items: baseline;
+ align-items: center;
margin-bottom: 10px;
padding: 15px 15px 0;
&__icon {
margin-right: 10px;
font-size: 20px;
+
+ &.svg-icon {
+ width: 20px;
+ height: 20px;
+ }
}
&__label {