Merge pull request #150 from Spythere/development

Fix for station statistics dropdown overflow
This commit is contained in:
Spythere
2025-12-13 02:21:19 +01:00
committed by GitHub
2 changed files with 3 additions and 5 deletions
+1 -3
View File
@@ -19,7 +19,5 @@ jobs:
run: |
mkdir -p ~/.ssh
echo "${{ secrets.VPS_SSH_PRIVATE_KEY }}" > ~/.ssh/id_rsa && chmod 600 ~/.ssh/id_rsa
- name: Clear old assets
run: ssh -o StrictHostKeyChecking=no -v -i ~/.ssh/id_rsa ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }} -p 2022 "rm -rf /var/www/$PROJECT_NAME/assets"
- name: Send new files
run: scp -o StrictHostKeyChecking=no -v -i ~/.ssh/id_rsa -P 2022 -r ./dist/* ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }}:/var/www/$PROJECT_NAME
run: rsync -avP -e "ssh -o StrictHostKeyChecking=no -i ~/.ssh/id_rsa -p 2022" ./dist/ ${{ secrets.VPS_USER }}@${{ secrets.VPS_HOST }}:/var/www/$PROJECT_NAME --delete
+2 -2
View File
@@ -156,12 +156,12 @@ export default defineComponent({
.stations-topbar {
display: flex;
flex-wrap: wrap;
gap: 0.5em;
justify-content: space-between;
overflow-x: auto;
position: relative;
margin-bottom: 0.5em;
position: relative;
& > div {
display: flex;