Skip to content

Commit 200f7e6

Browse files
author
宋慧武
committed
🎉YNTKC ssr
1 parent fe6c1db commit 200f7e6

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+5441
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.DS_Store
2+
node_modules/
3+
*.log

.vscode/settings.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"git.ignoreLimitWarning": true
3+
}

assets/common.css

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
input {
2+
padding: .8em;
3+
outline: none;
4+
border: 1px solid #e3e3e3;
5+
border-radius: 2px;
6+
}
7+
input:hover {
8+
border: 1px solid #b4a078;
9+
}
10+
input:focus {
11+
border: 1px solid #b4a078;
12+
box-shadow: 0 0 0 2px rgba(180, 160, 120, 0.2);
13+
}

0 commit comments

Comments
 (0)