Skip to content

Commit

Permalink
Merge pull request #365 from yamadashy/fix/website-dark
Browse files Browse the repository at this point in the history
fix(website): Fix some UI dark mode issues
  • Loading branch information
yamadashy authored Feb 21, 2025
2 parents c79e58a + c9fcec7 commit 5d373d9
Show file tree
Hide file tree
Showing 4 changed files with 126 additions and 118 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,17 +56,6 @@ jobs:
with:
args: "-color"

check-npm-audit:
name: Check npm audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .tool-versions
cache: npm
- run: npm audit

check-typos:
name: Check typos
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion website/client/components/TryIt.vue
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function handleFileUpload(file: File) {
flex: 1;
height: 48px;
padding: 0 16px;
background: white;
background: var(--vp-c-bg);
cursor: pointer;
font-size: 16px;
white-space: nowrap;
Expand Down
4 changes: 2 additions & 2 deletions website/client/components/TryItFileUpload.vue
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function triggerFileInput() {
height: 50px;
display: flex;
align-items: center;
background: white;
background: var(--vp-c-bg);
user-select: none;
}
Expand Down Expand Up @@ -150,7 +150,7 @@ function triggerFileInput() {
}
.icon-folder {
color: #64748b;
color: var(--vp-c-text-1);
}
.icon-error {
Expand Down
Loading

0 comments on commit 5d373d9

Please sign in to comment.