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
3 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue