first commit
This commit is contained in:
51
resources/css/presets/aura/progressspinner/index.js
Normal file
51
resources/css/presets/aura/progressspinner/index.js
Normal file
@ -0,0 +1,51 @@
|
||||
export default {
|
||||
root: {
|
||||
class: [
|
||||
// Position
|
||||
'relative',
|
||||
'mx-auto',
|
||||
|
||||
// Sizing
|
||||
'w-28',
|
||||
'h-28',
|
||||
|
||||
// Flexbox
|
||||
'inline-block',
|
||||
|
||||
// Pseudo-Elements
|
||||
'before:block',
|
||||
'before:pt-full'
|
||||
]
|
||||
},
|
||||
spinner: {
|
||||
class: [
|
||||
// Position
|
||||
'absolute',
|
||||
'top-0',
|
||||
'bottom-0',
|
||||
'left-0',
|
||||
'right-0',
|
||||
'm-auto',
|
||||
|
||||
// Sizing
|
||||
'w-full',
|
||||
'h-full',
|
||||
|
||||
// Transformations
|
||||
'transform',
|
||||
'origin-center',
|
||||
|
||||
// Animations
|
||||
'animate-spin'
|
||||
]
|
||||
},
|
||||
circle: {
|
||||
class: [
|
||||
// Colors
|
||||
'text-red-500',
|
||||
|
||||
// Misc
|
||||
'progress-spinner-circle'
|
||||
]
|
||||
}
|
||||
};
|
Reference in New Issue
Block a user