Skip to content

Commit 59464c8

Browse files
author
Miqueas
committed
Svelte: minor changes
1 parent 885f864 commit 59464c8

File tree

3 files changed

+66
-3
lines changed

3 files changed

+66
-3
lines changed

Svelte/package-lock.json

+60
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Svelte/package.json

+4-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@
1818
"typescript": "^5.0.0",
1919
"vite": "^5.0.3"
2020
},
21-
"type": "module"
21+
"type": "module",
22+
"dependencies": {
23+
"node-emoji": "^2.1.3"
24+
}
2225
}

Svelte/src/app.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
border-left-style: solid;
6060
}
6161

62-
button {
62+
button, input[type="submit"] {
6363
box-shadow: inset 3px -3px rgba(0, 0, 0, 0.4);
6464
border-radius: 10px;
6565
color: #fafafa;
@@ -69,7 +69,7 @@
6969
transition: all 50ms ease-in-out;
7070
}
7171

72-
button:active {
72+
button:active, input[type="submit"]:active {
7373
box-shadow: inset -3px 3px rgba(0, 0, 0, 0.4);
7474
background-color: rgb(240, 80, 30);
7575
}

0 commit comments

Comments
 (0)