Profectus-Demo/src/components/system/VerticalRule.vue

21 lines
298 B
Vue

<template>
<div class="vr" :style="{ height }"></div>
</template>
<script>
export default {
name: 'vr',
props: {
height: String
}
};
</script>
<style scoped>
.vr {
width: 4px;
background: var(--separator);
height: 100%;
margin: 0 7px;
}
</style>