traefik/webui/src/components/_commons/TLSState.vue
2019-11-27 15:06:06 +01:00

26 lines
418 B
Vue

<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;
.q-icon {
color: green;
font-size: 22px;
margin: 0 0 0 1px;
}
}
</style>