Commit aed6fc78 by Jonathan Thomas

Fixed opacity to be between 0 and 1. Webpack was getting confused with the invalid value.

parent 77dcd381
Pipeline #8982 passed with stage
in 35 seconds
...@@ -307,7 +307,7 @@ export default { ...@@ -307,7 +307,7 @@ export default {
} }
.small-dropdown { .small-dropdown {
min-width: 5em; min-width: 5em;
opacity: 80%; opacity: 0.8;
} }
.clip-label { .clip-label {
color: #ffffff; color: #ffffff;
......
...@@ -172,7 +172,7 @@ export default { ...@@ -172,7 +172,7 @@ export default {
} }
.small-dropdown { .small-dropdown {
min-width: 5em; min-width: 5em;
opacity: 80%; opacity: 0.8;
} }
.dropdown-toggle { .dropdown-toggle {
filter: drop-shadow(0px 0px 2px #000000); filter: drop-shadow(0px 0px 2px #000000);
......
...@@ -283,6 +283,6 @@ export default { ...@@ -283,6 +283,6 @@ export default {
} }
.small-dropdown { .small-dropdown {
min-width: 5em; min-width: 5em;
opacity: 80%; opacity: 0.8;
} }
</style> </style>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment