Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 5 additions & 8 deletions .github/workflows/maintenance-pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Cache node_modules
uses: actions/cache@v4
Expand Down Expand Up @@ -91,7 +90,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Cache node_modules
uses: actions/cache@v4
Expand All @@ -117,6 +115,7 @@ jobs:
with:
workspaces: "src-tauri -> target"
cache-on-failure: true
shared-key: "v1-linux-x64"

- name: Check formatting
working-directory: src-tauri
Expand Down Expand Up @@ -211,15 +210,14 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Cache node_modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}-${{ runner.arch }}-node-${{ hashFiles('package-lock.json') }}
key: ${{ runner.os }}-node-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-${{ runner.arch }}-node-
${{ runner.os }}-node-

- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
Expand All @@ -229,13 +227,13 @@ jobs:
with:
workspaces: "src-tauri -> target"
cache-on-failure: true
shared-key: ${{ matrix.platform }}
shared-key: "v1-${{ matrix.platform }}"

- name: Cache Tauri CLI
uses: actions/cache@v4
with:
path: ~/.cargo/bin
key: cargo-bin-${{ runner.os }}-${{ runner.arch }}-tauri-${{ env.TAURI_CLI_VERSION }}
key: tauri-cli-${{ matrix.platform }}-${{ env.TAURI_CLI_VERSION }}

- name: Install dependencies
run: npm ci
Expand Down Expand Up @@ -391,7 +389,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "npm"

- name: Cache node_modules
uses: actions/cache@v4
Expand Down
6 changes: 3 additions & 3 deletions src/styles/flash.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
.flash-header {
display: flex;
align-items: center;
gap: 18px;
padding: 18px;
gap: 20px;
padding: 20px 24px;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 10px;
Expand All @@ -31,7 +31,7 @@
height: 100px;
object-fit: contain;
flex-shrink: 0;
transform: scale(2);
transform: scale(1.5);
}

.flash-custom-image-icon {
Expand Down
4 changes: 2 additions & 2 deletions src/styles/responsive.css
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
}

.flash-header {
gap: 14px;
padding: 14px;
gap: 16px;
padding: 16px 20px;
}

.flash-board-image {
Expand Down