aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/components/settings/account/AccountDashboard.js2
-rw-r--r--src/styles/settings.scss1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/components/settings/account/AccountDashboard.js b/src/components/settings/account/AccountDashboard.js
index 4a73b51d9..3f6964b6b 100644
--- a/src/components/settings/account/AccountDashboard.js
+++ b/src/components/settings/account/AccountDashboard.js
@@ -147,7 +147,7 @@ export default @observer class AccountDashboard extends Component {
147 </div> 147 </div>
148 <div className="account__info"> 148 <div className="account__info">
149 <h2> 149 <h2>
150 {`${user.firstname} ${user.lastname}`} 150 <span className="username">{`${user.firstname} ${user.lastname}`}</span>
151 {user.isPremium && ( 151 {user.isPremium && (
152 <> 152 <>
153 {' '} 153 {' '}
diff --git a/src/styles/settings.scss b/src/styles/settings.scss
index b01412942..1baff8b54 100644
--- a/src/styles/settings.scss
+++ b/src/styles/settings.scss
@@ -331,6 +331,7 @@
331 331
332 h2 { margin-bottom: 5px; } 332 h2 { margin-bottom: 5px; }
333 .badge { margin-top: 5px; } 333 .badge { margin-top: 5px; }
334 .username { margin-right: 10 }
334 } 335 }
335 336
336 .account__subscription { 337 .account__subscription {