🎨 (Install app) Change design

This commit is contained in:
Julien Calixte
2019-11-08 14:30:25 +01:00
parent a9615c4feb
commit 7fbfcc1172

View File

@@ -1,6 +1,6 @@
<template> <template>
<span class="install-app" v-if="showInstall"> <span class="install-app navbar-item" v-if="showInstall">
<a @click="prompt" class="navbar-item">installer</a> <span @click="prompt" class="install-button">installer</span>
<pwa-install></pwa-install> <pwa-install></pwa-install>
</span> </span>
</template> </template>
@@ -27,3 +27,9 @@ export default class InstallApp extends Vue {
} }
} }
</script> </script>
<style scoped>
span.install-button:hover {
cursor: pointer;
}
</style>