18 lines
314 B
Vue
18 lines
314 B
Vue
|
<template>
|
||
|
<li
|
||
|
class="dropdown-menu--divider"
|
||
|
:tabindex="null"
|
||
|
:aria-disabled="true"
|
||
|
></li>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {};
|
||
|
</script>
|
||
|
<style lang="scss" scoped>
|
||
|
.dropdown-menu--divider {
|
||
|
list-style: none;
|
||
|
margin: var(--space-small) 0;
|
||
|
border-bottom: 1px solid var(--s-50);
|
||
|
}
|
||
|
</style>
|