diff --git a/react-app/src/components/HeaderComponent.tsx b/react-app/src/components/HeaderComponent.tsx index 841327e..c0f7c98 100644 --- a/react-app/src/components/HeaderComponent.tsx +++ b/react-app/src/components/HeaderComponent.tsx @@ -18,14 +18,14 @@ export default function HeaderComponent() { return ( // use bg-zinc-200 instead? similar to daisyUI light-theme footer -
+
- SciLifeLab Logo + SciLifeLab Logo
-
-
    +
    +
      {Object.keys(links).map( key => (
    • {{links[key].text}}
    • ))} diff --git a/react-app/src/constants.ts b/react-app/src/constants.ts index 6696778..55678fc 100644 --- a/react-app/src/constants.ts +++ b/react-app/src/constants.ts @@ -1,11 +1,11 @@ // reused tailwind classes export const HEADER_ONE: string = "text-left text-black text-[40px] font-semibold"; -export const PAGE_DESCRIPTION_TEXT_BAR_CLASSES: string = "bg-gradient-to-b from-base-100 from-90% to-white text-justify text-[48px] font-bold py-8"; +export const PAGE_DESCRIPTION_TEXT_BAR_CLASSES: string = "bg-gradient-to-b from-base-100 from-90% to-white text-justify text-[48px] font-bold p-6"; export const BUTTON_TYPE_ONE: string = 'btn bg-fuchsia-950 text-white hover:bg-fuchsia-800 active:bg-fuchsia-900 focus:outline-none focus:ring focus:ring-fuchsia-300'; export const BUTTON_TYPE_TWO: string = 'btn bg-gray-950 text-white hover:bg-gray-800 active:bg-gray-900 focus:outline-none focus:ring focus:ring-gray-300'; -export const BODY_CLASSES: string = "bg-white space-y-6 p-14"; +export const BODY_CLASSES: string = "bg-white space-y-4 py-4 px-12"; export const LINK_CLASSES: string = 'link link-hover'; \ No newline at end of file