Skip to content

Commit

Permalink
大抵是跑路了
Browse files Browse the repository at this point in the history
  • Loading branch information
kobe-koto committed Aug 25, 2023
1 parent 850322f commit 3399131
Show file tree
Hide file tree
Showing 25 changed files with 266 additions and 129 deletions.
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@
"dependencies": {
"@vitejs/plugin-legacy": "^4.0.2",
"astro": "^2.1.2",
"astro-icon": "^0.8.1",
"autoprefixer": "^10.4.14",
"heroicons": "^2.0.18",
"postcss": "^8.4.21",
"sass": "^1.62.1",
"vite": "^4.2.1"
Expand Down
177 changes: 177 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 16 additions & 9 deletions src/assets/base.css → src/assets/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,22 @@ body {
background-color: #1f1f1f;
/* #28292a */
transition: all .45s ease;
}
body[theme="Light"] {
background-color: #f8f8ff;
/* #f8fafd */
color: #1f1f1f;
[astro-icon] {
fill: #f8f8ff;

height: 20px;
width: 20px;
}

&[theme="Light"] {
background-color: #f8f8ff;
/* #f8fafd */
color: #1f1f1f;

[astro-icon] {
fill: #1f1f1f;
}
}
}

main {
Expand All @@ -30,10 +41,6 @@ div.ContentsContainer:last-child {
margin-bottom: 0 !important;
}

body[theme="Light"] svg {
fill: #1f1f1f !important;
}

button {
border: none;
}
Expand Down
Loading

0 comments on commit 3399131

Please sign in to comment.