Merge branch 'refactor/ui' of https://github.com/hoppscotch/hoppscotch into refactor/ui

This commit is contained in:
Liyas Thomas
2021-07-04 17:12:15 +00:00
committed by GitHub
4 changed files with 26 additions and 3 deletions

26
components/app/Login.vue Normal file
View File

@@ -0,0 +1,26 @@
<template>
<SmartModal v-if="show" @close="hideModal">
<template #header>
<h3 class="heading">{{ $t("login") }}</h3>
<div>
<ButtonSecondary icon="close" @click.native="hideModal" />
</div>
</template>
<template #body>
<FirebaseLogin />
</template>
</SmartModal>
</template>
<script>
export default {
props: {
show: Boolean,
},
methods: {
hideModal() {
this.$emit("hide-modal")
},
},
}
</script>

View File

@@ -78,7 +78,6 @@ export default {
this.globe = new ThreeGlobe()
.globeImageUrl(texture)
.atmosphereColor("#aaaaaa")
// arcs layer
.arcsData(this.arcsData)
.arcColor("color")

View File

@@ -20,7 +20,6 @@
@apply bg-primaryDark;
@apply text-secondary;
@apply font-mono;
@apply border border-divider;
}

View File

@@ -124,7 +124,6 @@ export default {
@apply items-center;
@apply justify-center;
@apply transition;
@apply bg-primaryLight;
}