diff options
Diffstat (limited to 'packages/client/src/components/ui/hr.vue')
| -rw-r--r-- | packages/client/src/components/ui/hr.vue | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/client/src/components/ui/hr.vue b/packages/client/src/components/ui/hr.vue new file mode 100644 index 0000000000..6b075cb440 --- /dev/null +++ b/packages/client/src/components/ui/hr.vue @@ -0,0 +1,16 @@ +<template> +<div class="evrzpitu"></div> +</template> + +<script lang="ts"> +import { defineComponent } from 'vue';import * as os from '@/os'; + +export default defineComponent({}); +</script> + +<style lang="scss" scoped> +.evrzpitu + margin 16px 0 + border-bottom solid var(--lineWidth) var(--faceDivider) + +</style> |