Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
riccardoperra committed Nov 5, 2024
1 parent 5c8124a commit ada1fc0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 3 deletions.
20 changes: 18 additions & 2 deletions packages/app/src/components/Home/Home.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,25 @@ export const homeLayoutWrapper = style({
},
width: '100%',
height: '100vh',
background: `linear-gradient(90deg,#8882 1px,transparent 0),linear-gradient(180deg,#8882 1px,transparent 0)`,
backgroundColor: '#0c0c0cba',
backgroundSize: `${size * scale}px ${size * scale}px`,
'::before': {
content: "''",
vars: {
'--line': '#a1a1a1',
'--size': `${size * scale}px`,
},
height: '100%',
width: '100%',
position: 'fixed',
background:
'linear-gradient(90deg, var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size), linear-gradient(var(--line) 1px, transparent 1px var(--size)) 50% 50% / var(--size) var(--size)',
WebkitMask: 'linear-gradient(-5deg, transparent 35%, white)',
mask: 'linear-gradient(-5deg, transparent 35%, white)',
top: '0',
transformStyle: 'flat',
pointerEvents: 'none',
zIndex: '-1',
},
});

export const homeContainer = style({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
| [run-name](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#run-name) ||
| [on](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#on) ||
| [on.\<event_name>.types](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onevent_nametypes) ||
| [on.\<pull_request\|pull_request_target>.\<branches\|branches-ignore>](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore) | |
| [on.\<pull_request\|pull_request_target>.\<branches\|branches-ignore>](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpull_requestpull_request_targetbranchesbranches-ignore) | |
| [on.push.\<branches\|tags\|branches-ignore\|tags-ignore>](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushbranchestagsbranches-ignoretags-ignore) ||
| [on.\<push\|pull_request\|pull_request_target>.\<paths\|paths-ignore>](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore) ||
| [on.\<push\|pull_request\|pull_request_target>.\<paths\|paths-ignore>](https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#onpushpull_requestpull_request_targetpathspaths-ignore) ||
Expand Down

0 comments on commit ada1fc0

Please sign in to comment.