fix: Fix login button is missing in Safari (#4332)

Fixes #4328
This commit is contained in:
Sivin Varghese 2022-04-01 21:03:53 +05:30 committed by GitHub
parent caee9535f1
commit 5d85a21287
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -57,3 +57,13 @@ export default {
},
};
</script>
<style lang="scss" scoped>
button:disabled {
opacity: 1;
background-color: var(--w-100);
&:hover {
background-color: var(--w-100);
}
}
</style>