Skip to content

Commit 3c5645d

Browse files
committed
feat: created the bg in svg, removed vue-m momentarily
1 parent 5e7690f commit 3c5645d

File tree

5 files changed

+38
-13
lines changed

5 files changed

+38
-13
lines changed

vue-m-web/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"preview": "vite preview"
1010
},
1111
"dependencies": {
12-
"@prolazydev/vue-m": "^0.1.2",
1312
"vue": "^3.2.47"
1413
},
1514
"devDependencies": {
Lines changed: 11 additions & 0 deletions
Loading
Lines changed: 11 additions & 0 deletions
Loading

vue-m-web/src/assets/bg-square.svg

Lines changed: 11 additions & 0 deletions
Loading

vue-m-web/src/style.css

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
:root {
2-
--bg: linear-gradient(rgba(52, 52, 52, 0.1), rgba(52, 52, 52, 0.1)),
3-
url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAIAAACRXR/mAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDpAAB1MAAA6mAAADqYAAAXb5JfxUYAAABnSURBVHja7M5RDYAwDEXRDgmvEocnlrQS2SwUFST9uEfBGWs9c97nbGtDcquqiKhOImLs/UpuzVzWEi1atGjRokWLFi1atGjRokWLFi1atGjRokWLFi1af7Ukz8xWp8z8AAAA//8DAJ4LoEAAlL1nAAAAAElFTkSuQmCC")
4-
repeat 0 0;
2+
--bg: url('./assets/bg-square.svg');
3+
--bg-dark: url('./assets/bg-square-dark.svg');
4+
--bg-transparent: url('./assets/bg-square-transparent.svg');
55

6-
/* --shadow-green: 2px 2px 0px #7bf09a;
7-
--shadow-blue: 4px 4px 10em blue;
8-
--shadow-red: 6px 6px 10em red; */
96
}
107

118
* {
@@ -32,11 +29,7 @@ body {
3229

3330
padding: 3rem;
3431
background: var(--bg);
35-
/* filter: li; */
32+
background: var(--bg-dark);
33+
background: var(--bg-transparent);
3634
transition: transform, background, background-position 0.25s ease-out !important;
3735
}
38-
39-
#app::before {
40-
background: var(--bg);
41-
filter: brightness(60%) invert(70%) opacity(20%);
42-
}

0 commit comments

Comments
 (0)