bugfix: opacity: 100% gets 'translated' to 1% by SCSS compiler during build

This commit is contained in:
Settel 2022-03-14 22:41:48 +01:00
parent 08b3e94d69
commit 98c782627e

View File

@ -154,6 +154,6 @@ export default {
} }
@keyframes finals-text { @keyframes finals-text {
0% { opacity: 0; } 0% { opacity: 0; }
100% { opacity: 100%; } 100% { opacity: 1; }
} }
</style> </style>