diff --git a/src/main/webapp/app/app.scss b/src/main/webapp/app/app.scss index 3e58105..5f6b5bb 100644 --- a/src/main/webapp/app/app.scss +++ b/src/main/webapp/app/app.scss @@ -6,6 +6,10 @@ body { margin: 0; } +.header-padding { + padding-top: 60px; +} + a { color: #533f03; font-weight: bold; diff --git a/src/main/webapp/app/app.tsx b/src/main/webapp/app/app.tsx index d23b0e4..d48645c 100644 --- a/src/main/webapp/app/app.tsx +++ b/src/main/webapp/app/app.tsx @@ -27,10 +27,9 @@ export const App = (props: IAppProps) => { props.getProfile(); }, []); - const paddingTop = '60px'; return ( -
+
{ }, []); return ( -
+

Activation

diff --git a/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx b/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx index 944a223..e86ef75 100644 --- a/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx +++ b/src/main/webapp/app/modules/account/password-reset/finish/password-reset-finish.tsx @@ -61,7 +61,7 @@ export const PasswordResetFinishPage = (props: IPasswordResetFinishProps) => { }; return ( -
+

Reset password

diff --git a/src/main/webapp/app/modules/account/password/password.tsx b/src/main/webapp/app/modules/account/password/password.tsx index dc22b6f..255ba89 100644 --- a/src/main/webapp/app/modules/account/password/password.tsx +++ b/src/main/webapp/app/modules/account/password/password.tsx @@ -29,7 +29,7 @@ export const PasswordPage = (props: IUserPasswordProps) => { const updatePassword = event => setPassword(event.target.value); return ( -
+

Password for {props.account.login}

diff --git a/src/main/webapp/app/modules/account/register/register.tsx b/src/main/webapp/app/modules/account/register/register.tsx index 6c9c9b6..62c29e4 100644 --- a/src/main/webapp/app/modules/account/register/register.tsx +++ b/src/main/webapp/app/modules/account/register/register.tsx @@ -28,7 +28,7 @@ export const RegisterPage = (props: IRegisterProps) => { const updatePassword = event => setPassword(event.target.value); return ( -
+

Registration

diff --git a/src/main/webapp/app/modules/account/settings/settings.tsx b/src/main/webapp/app/modules/account/settings/settings.tsx index c5c7535..cd42773 100644 --- a/src/main/webapp/app/modules/account/settings/settings.tsx +++ b/src/main/webapp/app/modules/account/settings/settings.tsx @@ -29,7 +29,7 @@ export const SettingsPage = (props: IUserSettingsProps) => { }; return ( -
+

User settings for {props.account.login}

diff --git a/src/main/webapp/app/modules/administration/audits/audits.tsx b/src/main/webapp/app/modules/administration/audits/audits.tsx index 1749020..2292085 100644 --- a/src/main/webapp/app/modules/administration/audits/audits.tsx +++ b/src/main/webapp/app/modules/administration/audits/audits.tsx @@ -94,7 +94,7 @@ export const AuditsPage = (props: IAuditsPageProps) => { const { audits, totalItems } = props; return ( -
+

Audits

from diff --git a/src/main/webapp/app/modules/administration/configuration/configuration.tsx b/src/main/webapp/app/modules/administration/configuration/configuration.tsx index 6e785b0..ab8f33d 100644 --- a/src/main/webapp/app/modules/administration/configuration/configuration.tsx +++ b/src/main/webapp/app/modules/administration/configuration/configuration.tsx @@ -39,7 +39,7 @@ export const ConfigurationPage = (props: IConfigurationPageProps) => { const env = configuration && configuration.env ? configuration.env : {}; return ( -
+

Configuration

Filter diff --git a/src/main/webapp/app/modules/administration/docs/docs.tsx b/src/main/webapp/app/modules/administration/docs/docs.tsx index 11ed8c4..8533770 100644 --- a/src/main/webapp/app/modules/administration/docs/docs.tsx +++ b/src/main/webapp/app/modules/administration/docs/docs.tsx @@ -3,7 +3,7 @@ import './docs.scss'; import React from 'react'; const DocsPage = () => ( -
+