Skip to content

Commit

Permalink
fix: waves zindex
Browse files Browse the repository at this point in the history
  • Loading branch information
baktun14 committed Jul 5, 2024
1 parent 33ee2d9 commit fe1ee5a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion deploy-web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cloudmos-app",
"version": "1.24.0",
"version": "1.25.0",
"description": "Web UI to deploy on the Akash Network and view statistic about network usage.",
"author": "Cloudmos",
"private": true,
Expand Down
2 changes: 1 addition & 1 deletion deploy-web/src/components/waves.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export const Waves = () => {
const isMobile = useMediaQuery(theme.breakpoints.down("sm"));
const height = useDocHeight();
return (
<Box sx={{ position: "absolute", width: "100%", height: height, left: 0 }}>
<Box sx={{ position: "absolute", width: "100%", height: height, left: 0, zIndex: -1 }}>
<Wave
fill={theme.palette.secondary.main}
paused={false}
Expand Down
2 changes: 1 addition & 1 deletion deploy-web/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const IndexPage: React.FunctionComponent<Props> = ({}) => {
return (
<>
<Head>
<title>Cloudmos Import</title>
<title>Cloudmos</title>
</Head>

<Box
Expand Down

0 comments on commit fe1ee5a

Please sign in to comment.