Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Lykhoyda committed Dec 3, 2024
1 parent 80ed0ca commit 6c16b8e
Show file tree
Hide file tree
Showing 4 changed files with 33 additions and 34 deletions.
1 change: 0 additions & 1 deletion packages/web-wallet/public/vite.svg

This file was deleted.

2 changes: 1 addition & 1 deletion packages/web-wallet/src/assets/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import ChainsafeSvg from './chainsafe.svg';
import FormTransferSvg from './form-transfer.svg';
import MetaMaskLogoSvg from './metaMaskLogo.svg';
import MetaMaskLogoSvg from './metaMask-logo.svg';
import MetaMaskSnapsLogoSvg from './metamask-snaps-logo.svg';
import ZcashSvg from './zcash.svg';
import ZcashYellowSvg from './zcash-yellow.svg';
Expand Down
64 changes: 32 additions & 32 deletions packages/web-wallet/src/styles/index.css
Original file line number Diff line number Diff line change
@@ -1,42 +1,42 @@
@import "@fontsource/roboto/400.css";
@import "@fontsource/roboto/500.css";
@import "@fontsource/roboto/700.css";
@import '@fontsource/roboto/400.css';
@import '@fontsource/roboto/500.css';
@import '@fontsource/roboto/700.css';

@import "@fontsource/inter/400.css";
@import "@fontsource/inter/600.css";
@import '@fontsource/inter/400.css';
@import '@fontsource/inter/600.css';

@tailwind base;
@tailwind components;
@tailwind utilities;

body {
position: relative;
background: linear-gradient(180deg, #fff 0%, #bcefef 187.66%);
overflow: hidden;
position: relative;
background: linear-gradient(180deg, #fff 0%, #bcefef 187.66%);
overflow: hidden;

/* Noise background */
&:before {
content: '';
position: absolute;
width: 100vw;
height: 100vh;
z-index: -1;
opacity: 0.25;
background: url('../assets/Noise.png') lightgray 0 0 / 15px 15px repeat;
mix-blend-mode: color-burn;
}
/* Noise background */
&:before {
content: '';
position: absolute;
width: 100vw;
height: 100vh;
z-index: -1;
opacity: 0.25;
background: url('../assets/noise.png') lightgray 0 0 / 15px 15px repeat;
mix-blend-mode: color-burn;
}

/* Yellow oval shape background */
&:after {
content: '';
position: absolute;
width: 75.5vw;
height: 88.1875rem;
top: 20rem;
left: 2.5rem;
z-index: -1;
border-radius: 88.1875rem;
background: rgba(187, 160, 17, 0.5);
filter: blur(274px);
}
/* Yellow oval shape background */
&:after {
content: '';
position: absolute;
width: 75.5vw;
height: 88.1875rem;
top: 20rem;
left: 2.5rem;
z-index: -1;
border-radius: 88.1875rem;
background: rgba(187, 160, 17, 0.5);
filter: blur(274px);
}
}

0 comments on commit 6c16b8e

Please sign in to comment.