Skip to content

Conversation

@thisduck
Copy link
Contributor

@thisduck thisduck commented Dec 8, 2020

This PR observes animation: ... declarations and expands them into their animation-*: ... counterparts.

e.g.:

.animate-spin {
  animation: spin 1s linear infinite
}

becomes:

.animate-spin {
  animation-name: spin;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-duration: 1000
}

@rigor789 rigor789 merged commit 0d7b779 into NativeScript:feat/tailwind2 Dec 8, 2020
rigor789 added a commit that referenced this pull request Apr 5, 2021
* feat: postcss8 & tailwind2

* feat: add animation to supported properties

* feat: expand animations for NS. (#67)

* feat: support flexbox classes (#72)

* (feat): Adding flexbox classes.

* (refactor): Combine plugins for export.

* (refactor): include postcss files.

* (refactor): include dependencies.

* Represent animation duration as seconds.

* chore: clean up repo

* chore: build & pin postcss

* chore: bump tailwind

Co-authored-by: Adnan Ali <adnan.ali@gmail.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants