feat: add loader bar to animate loading state
This commit is contained in:
parent
acaf0ca0af
commit
17654b885b
3 changed files with 24 additions and 0 deletions
|
|
@ -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)',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue