diff options
Diffstat (limited to 'client')
3 files changed, 10 insertions, 3 deletions
diff --git a/client/src/app/+accounts/accounts.component.scss b/client/src/app/+accounts/accounts.component.scss index e6ab3c036..40c6b6493 100644 --- a/client/src/app/+accounts/accounts.component.scss +++ b/client/src/app/+accounts/accounts.component.scss | |||
@@ -89,6 +89,10 @@ my-user-moderation-dropdown, | |||
89 | text-align: center; | 89 | text-align: center; |
90 | } | 90 | } |
91 | } | 91 | } |
92 | |||
93 | .right-buttons { | ||
94 | margin-left: 0; | ||
95 | } | ||
92 | } | 96 | } |
93 | } | 97 | } |
94 | } | 98 | } |
diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html index d60fd5c5f..607a7e113 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.html +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.html | |||
@@ -58,8 +58,10 @@ | |||
58 | <span *ngIf="isUserLoggedIn()" i18n>Subscribe with your local account</span> | 58 | <span *ngIf="isUserLoggedIn()" i18n>Subscribe with your local account</span> |
59 | </button> | 59 | </button> |
60 | 60 | ||
61 | <button class="dropdown-item dropdown-item-neutral" i18n>Subscribe with a Mastodon account:</button> | 61 | <button class="dropdown-item dropdown-item-neutral"> |
62 | <my-remote-subscribe [showHelp]="true" [uri]="uri"></my-remote-subscribe> | 62 | <div class="mb-1" i18n>Subscribe with a Mastodon account:</div> |
63 | <my-remote-subscribe [showHelp]="true" [uri]="uri"></my-remote-subscribe> | ||
64 | </button> | ||
63 | 65 | ||
64 | <div class="dropdown-divider"></div> | 66 | <div class="dropdown-divider"></div> |
65 | 67 | ||
diff --git a/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss b/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss index b739c5ae2..f6cdc11c0 100644 --- a/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss +++ b/client/src/app/shared/shared-user-subscription/subscribe-button.component.scss | |||
@@ -21,7 +21,8 @@ | |||
21 | height: 35px; | 21 | height: 35px; |
22 | 22 | ||
23 | & > button:first-child { | 23 | & > button:first-child { |
24 | width: 175px; | 24 | width: max-content; |
25 | min-width: 175px; | ||
25 | } | 26 | } |
26 | 27 | ||
27 | button .extra-text { | 28 | button .extra-text { |