traefik/webui/src/components/_commons/TLSState.vue

27 lines
416 B
Vue
Raw Normal View History

2019-09-10 12:40:05 +00:00
<template>
<q-avatar text-color="dark">
<q-icon v-if="isTLS" name="eva-shield" />
</q-avatar>
</template>
<script>
export default {
name: 'TLSState',
props: ['isTLS']
}
</script>
<style scoped lang="scss">
@import "../../css/sass/variables";
.q-avatar{
font-size: 32px;
border-radius: 4px;
color: green;
.q-icon {
font-size: 22px;
margin: 0 0 0 1px;
}
}
</style>