🎨 Minor UI fixes

This commit is contained in:
Liyas Thomas
2020-03-21 07:42:28 +05:30
parent b14adc29f5
commit 14d5461085
3 changed files with 99 additions and 98 deletions

View File

@@ -257,6 +257,33 @@
</header>
</template>
<style scoped lang="scss">
@keyframes slideIn {
0% {
opacity: 0;
left: -16px;
}
100% {
opacity: 1;
left: 0px;
}
}
.slide-in {
position: relative;
animation: slideIn 0.2s forwards ease-in-out;
}
.logo {
font-size: 22px;
&:hover {
color: var(--ac-color);
}
}
</style>
<script>
import intializePwa from "../../assets/js/pwa"
import { hasExtensionInstalled } from "../../functions/strategies/ExtensionStrategy"