Skip to content

Commit de54a95

Browse files
authored
tw preset: add fade-in keyframes (#410)
* tw preset: add fade-in keyframes * checkout w/ mantle bot token?
1 parent 0868adb commit de54a95

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

.changeset/thin-rabbits-mate.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@ngrok/mantle": patch
3+
---
4+
5+
add fade-in keyframes to tailwind preset

.github/workflows/publish-npm.yml

+2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,8 @@ jobs:
2525
private-key: ${{ secrets.RELEASE_BOT_PRIVATE_KEY }}
2626

2727
- uses: actions/checkout@v4
28+
with:
29+
token: ${{ steps.generate-token.outputs.token }}
2830

2931
- uses: actions/setup-node@v4
3032
with:

packages/mantle/src/tailwind-preset/tailwind.preset.ts

+4
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,10 @@ const mantlePreset = {
459459
from: { height: "var(--radix-accordion-content-height)" },
460460
to: { height: "0" },
461461
},
462+
"fade-in": {
463+
"0%": { opacity: "0" },
464+
"100%": { opacity: "1" },
465+
},
462466
spin: {
463467
from: { transform: "rotate(var(--spin-start-deg, 0))" },
464468
to: { transform: "rotate(var(--spin-end-deg, 360deg))" },

0 commit comments

Comments
 (0)