Skip to content

Commit

Permalink
Merge pull request #31 from Octasol/backdrop
Browse files Browse the repository at this point in the history
Backdrop
  • Loading branch information
A91y authored Dec 9, 2024
2 parents 77c8bca + efd7dfc commit 83ada0d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/components/CoverUpPage/Index.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
import Link from "next/link";
import React from "react";
import "./cover.css";

type Props = {};

const CoverUpPage = (props: Props) => {
return (
<>
<div className="w-full h-full bg-transparent backdrop-blur-sm z-30 fixed top-0 right-0 text-white">
<div className="w-full h-full bg-transparent cover z-30 fixed top-0 right-0 text-white">
<div className="flex flex-col justify-center items-center h-screen w-full overflow-hidden">
<p className="text-4xl md:text-5xl lg:text-7xl">Coming Soon</p>
<p className="mt-8 text-center text-lg tracking-wide leading-8">
Expand Down
4 changes: 4 additions & 0 deletions src/components/CoverUpPage/cover.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.cover{
backdrop-filter: blur(5px);
-webkit-backdrop-filter: blur(5px);
}
2 changes: 1 addition & 1 deletion src/components/Loader/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
top: 0;
left: 0;
z-index: 2000;

backdrop-filter: blur(40px);
-webkit-backdrop-filter: blur(40px);
}

.path {
Expand Down

0 comments on commit 83ada0d

Please sign in to comment.