mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-02 21:08:12 +00:00
Merge pull request #150 from Spythere/development
Fix for station statistics dropdown overflow
This commit is contained in:
@@ -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
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user