Skip to content

Commit

Permalink
#74 that's pointless to generate 1000 animations for timeslots (we wi…
Browse files Browse the repository at this point in the history
…ll never have more than 20-30 timeslots a day)
  • Loading branch information
fcamblor committed Oct 30, 2024
1 parent e855b95 commit c83e0e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mobile/src/views/event/SchedulePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ async function openSchedulePreferencesModal() {
.listFeedbackSlot-item {
visibility: visible;
@for $i from 0 through 1000 {
@for $i from 0 through 100 {
animation: slide-left 140ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-timing-function: ease-in-out;
Expand All @@ -328,7 +328,7 @@ async function openSchedulePreferencesModal() {
border: none;
}
@for $i from 0 through 1000 {
@for $i from 0 through 100 {
animation: slide-left-revert 140ms cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
animation-timing-function: ease-in-out;
Expand Down

0 comments on commit c83e0e6

Please sign in to comment.