Skip to content
This repository was archived by the owner on May 11, 2025. It is now read-only.

Commit 8ff8129

Browse files
committed
fix mobile adapter
1 parent bcbefd7 commit 8ff8129

2 files changed

Lines changed: 15 additions & 5 deletions

File tree

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
name: Generate Package
1+
name: Deployment
22
on:
3-
release:
4-
types: [published]
3+
push:
4+
branches:
5+
- main
6+
57
jobs:
68
release:
79
runs-on: ubuntu-latest
@@ -30,9 +32,10 @@ jobs:
3032
go-version: '1.20'
3133

3234
- name: Build Backend
33-
run: go build .
35+
run: |
36+
go build .
3437
35-
- name: Zip
38+
- name: Pack
3639
run: |
3740
zip -r package.zip ./* -x "gui/*"
3841

gui/src/App.vue

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -175,4 +175,11 @@ html, body {
175175
.select * {
176176
font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
177177
}
178+
179+
@media (max-width: 320px) {
180+
#app {
181+
scale: .65;
182+
width: 200%;
183+
}
184+
}
178185
</style>

0 commit comments

Comments
 (0)