mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 02:03:35 -04:00 
			
		
		
		
	Updated css % opacity values to fix 1% issue
The % opacity css values were all being changed to 1% in my builds, which I belive was due to this issue: https://github.com/cssnano/cssnano/issues/892 so I switched them to specify decimal opacity values instead.
This commit is contained in:
		| @@ -152,6 +152,6 @@ export default { | ||||
|   margin-top: -10px; | ||||
| } | ||||
| .disabled-card { | ||||
|   opacity: 50%; | ||||
|   opacity: 0.5; | ||||
| } | ||||
| </style> | ||||
| @@ -123,6 +123,6 @@ export default { | ||||
|  | ||||
| <style> | ||||
| .disabled-card { | ||||
|   opacity: 50%; | ||||
|   opacity: 0.5; | ||||
| } | ||||
| </style> | ||||
| @@ -276,7 +276,7 @@ export default { | ||||
|  | ||||
| <style> | ||||
| .disabled-card { | ||||
|   opacity: 50%; | ||||
|   opacity: 0.5; | ||||
| } | ||||
| .my-divider { | ||||
|   margin: 0 -1px; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user