Skip to content
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
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ SciReactUI Changelog
-

### Changed
-
- Remove first-child css selector as it causes problems with server-side rendering.

[v0.3.0] - 2025-09-04
---------------------
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"lint:fix": "eslint --fix .",
"lint:tsc": "pnpm tsc --noEmit",
"rollup": "rollup --config rollup.config.mjs",
"storybook": "storybook dev -p 6006",
"storybook": "storybook dev -p 6006 --disable-telemetry",
"storybook:build": "storybook build -o storybook-static",
"storybook:publish": "gh-pages -b storybook/publish -d storybook-static"
},
Expand Down
4 changes: 3 additions & 1 deletion src/components/controls/ColourSchemeButton.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import { useColorScheme, useTheme } from "@mui/material";
import { IconButton, IconButtonProps } from "@mui/material";
import { LightMode, Bedtime } from "@mui/icons-material";

import LightMode from "@mui/icons-material/LightMode";
import Bedtime from "@mui/icons-material/Bedtime";

import { ColourSchemes } from "../../utils/globals";

Expand Down
5 changes: 1 addition & 4 deletions src/components/navigation/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,12 @@ const FooterLink = ({
},
textDecoration: "none",
color: theme.palette.primary.contrastText,
marginLeft: "1.5rem",
marginRight: "1.5rem",
marginBottom: "4px",
paddingBottom: "4px",
lineHeight: 1,
cursor: "pointer",
borderBottom: "solid transparent 4px",
"&:first-child": {
marginLeft: 0,
},
}}
{...props}
>
Expand Down