You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
358 B
26 lines
358 B
1 month ago
|
<template>
|
||
|
<div class="right-panel">
|
||
|
<slot name="default"></slot>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup lang="ts">
|
||
|
defineOptions({
|
||
|
name: "right-panel",
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
<style scoped lang="less">
|
||
|
.right-panel {
|
||
|
position: fixed;
|
||
|
right: 26px;
|
||
|
top: 24px;
|
||
|
width: auto;
|
||
|
bottom: 24px;
|
||
|
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
gap: 12px;
|
||
|
}
|
||
|
</style>
|