🎨 Minor stylings

This commit is contained in:
Liyas Thomas
2020-01-10 05:30:38 +05:30
parent 355688abf8
commit bf1a143f03
6 changed files with 28 additions and 29 deletions

View File

@@ -3,16 +3,18 @@
</template>
<style>
.typelink {
color: red
}
.typelink {
color: var(--ac-color);
font-family: "Roboto Mono", monospace;
font-weight: 400;
cursor: pointer;
}
</style>
<script>
export default {
props: {
gqlType: null,
// (typeName: string) => void
jumpTypeCallback: Function
},
@@ -28,6 +30,5 @@ export default {
this.jumpTypeCallback(this.gqlType);
}
}
}
};
</script>