mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-09 03:04:54 -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:
parent
15b13aa04d
commit
203b3aaa2c
@ -152,6 +152,6 @@ export default {
|
|||||||
margin-top: -10px;
|
margin-top: -10px;
|
||||||
}
|
}
|
||||||
.disabled-card {
|
.disabled-card {
|
||||||
opacity: 50%;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -123,6 +123,6 @@ export default {
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.disabled-card {
|
.disabled-card {
|
||||||
opacity: 50%;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
@ -276,7 +276,7 @@ export default {
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.disabled-card {
|
.disabled-card {
|
||||||
opacity: 50%;
|
opacity: 0.5;
|
||||||
}
|
}
|
||||||
.my-divider {
|
.my-divider {
|
||||||
margin: 0 -1px;
|
margin: 0 -1px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user