Skip to content
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

style(modals): remove no text wrap #1676

Merged
merged 1 commit into from
Oct 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@ function NameAndOrganizationSelector() {

return (
<form action={action} className="md:px-10">
<Heading2 className="text-nowrap">
Velg navn og organisasjon for tavlen
</Heading2>
<Heading2>Velg navn og organisasjon for tavlen</Heading2>
<Paragraph className="!mb-4">
Gi tavlen et navn og legg den til i en organisasjon. Velger du
en organisasjon vil alle i organisasjonen ha tilgang til tavlen.
Expand Down
11 changes: 5 additions & 6 deletions tavla/app/(admin)/components/Login/Email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -80,12 +80,11 @@ function Email() {
/>
<FormError {...getFormFeedbackForField('user', state)} />
<FormError {...getFormFeedbackForField('general', state)} />
<Link
className="w-28 text-nowrap"
href={getPathWithParams('reset')}
>
Glemt passord?
</Link>
<p>
<Link href={getPathWithParams('reset')}>
Glemt passord?
</Link>
</p>
<SubmitButton variant="primary">Logg inn</SubmitButton>
</form>
</div>
Expand Down