12345678910111213141516171819202122 |
- <template>
- <div class="right-pano strengthen-right">
- <slot></slot>
- </div>
- </template>
- <style lang="scss" scoped>
- .right-pano {
- position: absolute;
- width: 340px;
- background: rgba(27,27,28,0.8);
- backdrop-filter: blur(4px);
- top: calc(var(--editor-head-height) + var(--header-top) + 20px);
- right: 20px;
- z-index: 2000;
- overflow-y: auto;
- transition: all .3s ease;
- max-height: calc(100% - ( var(--editor-head-height) + var(--header-top) + 40px ));
- padding: 20px;
- border-radius: 4px;
- }
- </style>
|