Commit 2f84b8c 1 parent 224197f commit 2f84b8c Copy full SHA for 2f84b8c
File tree 1 file changed +2
-2
lines changed
src/app/semana/dia/[dia]/components/Categorias/components/Categorie
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ export default function Categorie({ categorie }: { categorie: CategoriaType }) {
26
26
:
27
27
`w-full bg-gray-500 flex flex-col justify-betweem items-center rounded overflow-hidden`
28
28
}
29
- style = { { backgroundColor : categorie . bg_color , color : categorie . text_color } }
29
+ style = { ! loading ? { backgroundColor : categorie . bg_color , color : categorie . text_color } : { } }
30
30
>
31
31
< h2 className = "text-2xl text-center my-2 flex-1" > { categorie . title } </ h2 >
32
- < div className = "w-full flex items-center justify-around bg-zinc-800 py-2" >
32
+ < div className = "w-full flex items-center justify-around bg-zinc-800 py-2 scale-105 " >
33
33
< FiEdit className = "hover:scale-110 duration-300 cursor-pointer" color = "#00ff00" size = { 27 } onClick = { ( ) => { setEditCategoria ( categorie ) } } />
34
34
< FiTrash className = "hover:scale-110 duration-300 cursor-pointer" color = "#ff0000" size = { 30 } onClick = { ( ) => handleDeleteCategorie ( ) } />
35
35
</ div >
You can’t perform that action at this time.
0 commit comments