Skip to content

Commit

Permalink
Merge pull request #178 from Jaewoook/feature/blur-effect
Browse files Browse the repository at this point in the history
Apply blur effect on Window component
  • Loading branch information
Jaewoook authored Apr 6, 2024
2 parents 0c3da92 + d4b6a26 commit 5c7c38c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
4 changes: 1 addition & 3 deletions app/components/Resume/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ export const Resume = () => {

return (
<Window x="200px" y="100px" title="Resume">
<div>
<canvas className={css.resumeCanvas} ref={pdfCanvasRef} />
</div>
<canvas className={css.resumeCanvas} ref={pdfCanvasRef} />
</Window>
);
};
3 changes: 2 additions & 1 deletion app/components/Window/Window.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ export const frame = style({
export const wrapper = style({
color: "#fff",
boxShadow: "rgba(0, 0, 0, 0.55) 0px 20px 68px",
backgroundColor: "#333",
backgroundColor: "rgba(51, 51, 51, 0.85)",
border: "1px solid #5c5c5c",
borderRadius: 12,
overflow: "hidden",
backdropFilter: "blur(32px)",
});

export const header = style({
Expand Down

0 comments on commit 5c7c38c

Please sign in to comment.