-
-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(account): restyle sign in page #1687
base: main
Are you sure you want to change the base?
Conversation
ff17304
to
691a5a9
Compare
@huzaifaedhi22 I'll fully review this next week, I've burnt through a bit of my backlog. |
db8592b
to
95ec293
Compare
to?: RouteLocationRaw | ||
type?: 'button' | 'reset' | 'submit' | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line to be removed
|
||
<AppLink :to="localePath('index')" :is-colored="true"> | ||
{{ t('imprint') }} | ||
</AppLink> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<AppLink :to="localePath('index')" :is-colored="true"> | |
{{ t('imprint') }} | |
</AppLink> | |
<AppLink :to="localePath('index')" :is-colored="true"> | |
{{ t('imprint') }} | |
</AppLink> |
|
||
<i18n lang="yaml"> | ||
de: | ||
terms: Bedingungen |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
terms: Bedingungen | |
terms: Nutzungsbedingungen |
@@ -104,6 +145,7 @@ const rules = { | |||
password: VALIDATION_PASSWORD(), | |||
emailAddress: VALIDATION_EMAIL_ADDRESS({ isRequired: true }), | |||
} | |||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
empty line to be removed, it's all the vuelidate
part
|
||
const legalTerms = computed(() => { | ||
return ( | ||
legalTermsQuery.value?.allLegalTerms?.edges |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What about .nodes
instead of .edges
? We use nodes in all other places
</div> | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unnecessary empty line
@@ -21,5 +21,5 @@ useHeadDefault({ title }) | |||
de: | |||
title: Registrieren |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
title: Registrieren | |
title: Erstelle ein Konto |
src/gql/generated/graphcache.ts
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Master should be merged in to resolve these diffs
02166c7
to
9df88a4
Compare
src/app/assets/css/app.css
Outdated
--critic-string: #e00000; | ||
--faint-line: #f2f2f2; | ||
--faint-weak: #f2f2f2; | ||
--semantic-accent-accent-icon: #12683a; | ||
--semantic-accent-accent-text: #12683a; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why remove any line here?
@@ -304,6 +305,15 @@ | |||
); | |||
} | |||
|
|||
@utility vio-line-clamp-2 { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why add this again?
src/app/assets/css/maevsi.css
Outdated
@@ -0,0 +1,406 @@ | |||
/* stylelint-disable at-rule-no-deprecated */ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file is now called app.css
, maevsi.css
does not exist anymore.
'rounded-sm', | ||
...(props.isColored ? ['text-link-dark dark:text-link-bright'] : []), | ||
'rounded', | ||
...(props.isColored ? ['text-accent-strong dark:text-link-bright'] : []), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does this work? Shouldn't it be
...(props.isColored ? ['text-accent-strong dark:text-link-bright'] : []), | |
...(props.isColored ? ['text-(--accent-strong= dark:text-link-bright'] : []), |
?
:is-underlined="true" | ||
:is-colored="true" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
:is-underlined="true" | |
:is-colored="true" | |
is-underlined | |
is-colored |
📚 Description
Started working on aligning the app implementation to our new design.
📝 Checklist