Skip to content

Commit

Permalink
Merge pull request #35 from eresearchqut/dev
Browse files Browse the repository at this point in the history
Apply enhancements to QA
  • Loading branch information
ppettitau authored Nov 6, 2024
2 parents 2cfbca4 + 8312ea9 commit d6cc53b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/layout/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ export const Layout: FunctionComponent<PropsWithChildren<PageProps>> = ({
const styles = useMultiStyleConfig("Page", props);

const {
state: { isAuthenticated, error },
state: { isAuthenticated },
initializeUser,
} = useAuth();

Expand Down
Binary file modified frontend/public/login.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions frontend/theme/components/page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ const baseStyle = definePartsStyle(() => {
},
footerContainer: defaultContainer,
header: {
bgColor: "blue.900",
bgColor: "brand.900",
color: "white",
},
navigation: {
bgColor: "#333333",
color: "#012A4C",
},
footer: {
bgColor: "blue.900",
bgColor: "brand.900",
color: "white",
},
main: {},
Expand Down
13 changes: 12 additions & 1 deletion frontend/theme/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,11 @@ const config: ThemeConfig = {
};

const colors = {
blue: {
brand: {
900: "#012A4C",
700: "#124C7B",
500: "#0066B9",
100: "#EFF6FB",
},
};

Expand All @@ -32,6 +35,14 @@ const overrides: Record<string, any> = {
},
},
},
Heading: {
baseStyle: {
color: "brand.500",
_dark: {
color: "white",
},
},
},
Page,
},
};
Expand Down

0 comments on commit d6cc53b

Please sign in to comment.