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

129 form fields styles #178

Merged
merged 6 commits into from
Nov 11, 2023
Merged
Show file tree
Hide file tree
Changes from 5 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
4 changes: 2 additions & 2 deletions src/pages/malynar/profil/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {NextPage} from 'next'

import Page from '../../strom/profil/index'

const Vysledky: NextPage = () => {
const Profile: NextPage = () => {
return <Page />
}

export default Vysledky
export default Profile
11 changes: 4 additions & 7 deletions src/pages/malynar/registracia.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {RegisterForm} from '@/components/RegisterForm/RegisterForm'
import Page from '../strom/registracia'

const Register: NextPage = () => (
<PageLayout contentWidth={2} title="Registrácia">
<RegisterForm />
</PageLayout>
)
const Register: NextPage = () => {
return <Page />
}

export default Register
4 changes: 2 additions & 2 deletions src/pages/matik/profil/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import {NextPage} from 'next'

import Page from '../../strom/profil/index'

const Vysledky: NextPage = () => {
const Profile: NextPage = () => {
return <Page />
}

export default Vysledky
export default Profile
11 changes: 4 additions & 7 deletions src/pages/matik/registracia.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
import {NextPage} from 'next'

import {PageLayout} from '@/components/PageLayout/PageLayout'
import {RegisterForm} from '@/components/RegisterForm/RegisterForm'
import Page from '../strom/registracia'

const Register: NextPage = () => (
<PageLayout contentWidth={2} title="Registrácia">
<RegisterForm />
</PageLayout>
)
const Register: NextPage = () => {
return <Page />
}

export default Register
6 changes: 3 additions & 3 deletions src/pages/strom/profil/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ import {NextPage} from 'next'
import {PageLayout} from '@/components/PageLayout/PageLayout'
import {ProfileDetail} from '@/components/Profile/ProfileDetail'

const Profil: NextPage = () => (
<PageLayout contentWidth={2} title="Profil">
const Profile: NextPage = () => (
<PageLayout contentWidth={1} title="Profil">
michalmasrna1 marked this conversation as resolved.
Show resolved Hide resolved
<ProfileDetail />
</PageLayout>
)

export default Profil
export default Profile
2 changes: 1 addition & 1 deletion src/pages/strom/profil/uprava.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {PageLayout} from '@/components/PageLayout/PageLayout'
import {ProfileForm} from '@/components/Profile/ProfileForm'

const Profil: NextPage = () => (
<PageLayout contentWidth={2} title="Profil">
<PageLayout contentWidth={1} title="Profil">
<ProfileForm />
</PageLayout>
)
Expand Down
2 changes: 1 addition & 1 deletion src/pages/strom/registracia.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {PageLayout} from '@/components/PageLayout/PageLayout'
import {RegisterForm} from '@/components/RegisterForm/RegisterForm'

const Register: NextPage = () => (
<PageLayout contentWidth={2} title="Registrácia">
<PageLayout contentWidth={1} title="Registrácia">
<RegisterForm />
</PageLayout>
)
Expand Down
Loading