small ui fixes

This commit is contained in:
2023-06-03 23:04:57 +02:00
parent 33f23f838d
commit cd807d7ff0
4 changed files with 25 additions and 14 deletions

View File

@@ -86,19 +86,22 @@ const handleSignIn = async (close: () => Promise<boolean>) => {
</div>
</div>
</template>
<style lang="scss">
<style lang="scss" scoped>
#logo {
@apply cursor-pointer transition-all duration-200 hover:text-primary;
}
@media (hover: hover) and (pointer: fine) {
#logo:hover {
text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
}
}
// @media (hover: hover) and (pointer: fine) {
// #logo:hover {
// text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
// }
// }
#logo:active {
text-shadow: 0 0 5px white, 0 0 10px white, 0 0 15px white;
}
.topbar-button {
&:active {
@apply border-white bg-white text-primary
}
@apply hover:border-white hover:bg-white hover:text-primary focus-visible:outline-white;
}