Skip to content

Commit 83ada0d

Browse files
authored
Merge pull request #31 from Octasol/backdrop
Backdrop
2 parents 77c8bca + efd7dfc commit 83ada0d

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

src/components/CoverUpPage/Index.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
import Link from "next/link";
22
import React from "react";
3+
import "./cover.css";
34

45
type Props = {};
56

67
const CoverUpPage = (props: Props) => {
78
return (
89
<>
9-
<div className="w-full h-full bg-transparent backdrop-blur-sm z-30 fixed top-0 right-0 text-white">
10+
<div className="w-full h-full bg-transparent cover z-30 fixed top-0 right-0 text-white">
1011
<div className="flex flex-col justify-center items-center h-screen w-full overflow-hidden">
1112
<p className="text-4xl md:text-5xl lg:text-7xl">Coming Soon</p>
1213
<p className="mt-8 text-center text-lg tracking-wide leading-8">
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.cover{
2+
backdrop-filter: blur(5px);
3+
-webkit-backdrop-filter: blur(5px);
4+
}

src/components/Loader/style.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
top: 0;
55
left: 0;
66
z-index: 2000;
7-
87
backdrop-filter: blur(40px);
8+
-webkit-backdrop-filter: blur(40px);
99
}
1010

1111
.path {

0 commit comments

Comments
 (0)