feat: add loader bar to animate loading state

This commit is contained in:
Felix Roos 2023-03-24 12:41:00 +01:00
parent acaf0ca0af
commit 17654b885b
3 changed files with 24 additions and 0 deletions

View file

@ -10,6 +10,15 @@ module.exports = {
],
theme: {
extend: {
keyframes: {
train: {
'0%': { transform: 'translateX(-100%)' },
'100%': { transform: 'translateX(100%)' },
},
},
animation: {
train: 'train 2s linear infinite',
},
colors: {
// codemirror-theme settings
background: 'var(--background)',