diff options
| author | Amelia Yukii <123300075+Insert5StarName@users.noreply.github.com> | 2023-11-03 23:20:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-03 23:20:53 +0100 |
| commit | 08de1f7baa525c9b59ffb876600149462712cd6b (patch) | |
| tree | b75afb1029f813fb68dc97548e11b608ef335a45 /packages/frontend/src/components/MkSignupDialog.rules.vue | |
| parent | Merge branch 'develop' of https://github.com/transfem-org/Sharkey into develop (diff) | |
| download | sharkey-08de1f7baa525c9b59ffb876600149462712cd6b.tar.gz sharkey-08de1f7baa525c9b59ffb876600149462712cd6b.tar.bz2 sharkey-08de1f7baa525c9b59ffb876600149462712cd6b.zip | |
fix: icons being inconsistent and PG (#136)
Diffstat (limited to 'packages/frontend/src/components/MkSignupDialog.rules.vue')
| -rw-r--r-- | packages/frontend/src/components/MkSignupDialog.rules.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/frontend/src/components/MkSignupDialog.rules.vue b/packages/frontend/src/components/MkSignupDialog.rules.vue index 3dc95ad0a0..7d044a1289 100644 --- a/packages/frontend/src/components/MkSignupDialog.rules.vue +++ b/packages/frontend/src/components/MkSignupDialog.rules.vue @@ -32,7 +32,7 @@ SPDX-License-Identifier: AGPL-3.0-only <MkFolder v-if="availableTos || availablePrivacyPolicy" :defaultOpen="true"> <template #label>{{ tosPrivacyPolicyLabel }}</template> - <template #suffix><i v-if="agreeTosAndPrivacyPolicy" class="ph-check ph-bold pg-lg" style="color: var(--success)"></i></template> + <template #suffix><i v-if="agreeTosAndPrivacyPolicy" class="ph-check ph-bold ph-lg" style="color: var(--success)"></i></template> <div class="_gaps_s"> <div v-if="availableTos"><a :href="instance.tosUrl" class="_link" target="_blank">{{ i18n.ts.termsOfService }} <i class="ph-arrow-square-out ph-bold ph-lg"></i></a></div> <div v-if="availablePrivacyPolicy"><a :href="instance.privacyPolicyUrl" class="_link" target="_blank">{{ i18n.ts.privacyPolicy }} <i class="ph-arrow-square-out ph-bold ph-lg"></i></a></div> @@ -54,7 +54,7 @@ SPDX-License-Identifier: AGPL-3.0-only <div class="_buttonsCenter"> <MkButton inline rounded @click="emit('cancel')">{{ i18n.ts.cancel }}</MkButton> - <MkButton inline primary rounded gradate :disabled="!agreed" data-cy-signup-rules-continue @click="emit('done')">{{ i18n.ts.continue }} <i class="ph-arrow-right ph-bold pg-lg"></i></MkButton> + <MkButton inline primary rounded gradate :disabled="!agreed" data-cy-signup-rules-continue @click="emit('done')">{{ i18n.ts.continue }} <i class="ph-arrow-right ph-bold ph-lg"></i></MkButton> </div> </div> </MkSpacer> |