Skip to content

Commit

Permalink
ci: remove cache. (#194)
Browse files Browse the repository at this point in the history
fix: vehicle popup transition.
  • Loading branch information
morganney authored Jan 26, 2024
1 parent ff6fced commit 530e231
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,7 @@ jobs:
with:
ref: ${{ inputs.branchName || 'main' }}
- name: Apt Pkgs
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: libnss3-tools
version: 1.3.1
run: sudo apt install libnss3-tools
- name: Install mkcert
run: |
curl -JLO "https://dl.filippo.io/mkcert/latest?for=linux/amd64"
Expand Down
7 changes: 4 additions & 3 deletions packages/ui/src/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -170,15 +170,16 @@ body.busmap-dark .busmap-user-circle {
.busmap-vehicle-popup dd {
margin: 0;
}
.busmap-vehicle-popup.selected {
transition: transform 4.25s ease;
/* increased specificity necessary due to cascade from dynamic import of leaflets css file. */
.leaflet-popup.busmap-vehicle-popup.selected {
transition: transform 3.75s ease;
}
.busmap-vehicle {
width: auto !important;
height: auto !important;
white-space: nowrap;
border: 1px solid black;
transition: transform 4.25s ease;
transition: transform 3.75s ease;
}
body.busmap-mapmove .busmap-vehicle {
transition: none;
Expand Down

0 comments on commit 530e231

Please sign in to comment.