Skip to content

Commit

Permalink
Remove animations settings from Tailwind config
Browse files Browse the repository at this point in the history
These are now in our component library so not needed here.
  • Loading branch information
seanh committed Jul 4, 2024
1 parent 4d84bdb commit 35beffd
Showing 1 changed file with 0 additions and 36 deletions.
36 changes: 0 additions & 36 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,6 @@ export default {
],
theme: {
extend: {
animation: {
'fade-in': 'fade-in 0.3s forwards',
'fade-out': 'fade-out 0.3s forwards',
'slide-in-from-right': 'slide-in-from-right 0.3s forwards ease-in-out',
},
fontFamily: {
sans: [
'"Helvetica Neue"',
Expand All @@ -27,37 +22,6 @@ export default {
// right edge instead of the left
'r-inner': 'inset -2px 0 4px 0 rgb(0,0,0,.05)',
},
keyframes: {
'fade-in': {
'0%': {
opacity: '0',
},
'100%': {
opacity: '1',
},
},
'fade-out': {
'0%': {
opacity: '1',
},
'100%': {
opacity: '0',
},
},
'slide-in-from-right': {
'0%': {
opacity: '0',
left: '100%',
},
'80%': {
left: '-10px',
},
'100%': {
left: '0',
opacity: '1',
},
},
},
},
},
};

0 comments on commit 35beffd

Please sign in to comment.