right-pano.vue 519 B

12345678910111213141516171819202122
  1. <template>
  2. <div class="right-pano strengthen-right">
  3. <slot></slot>
  4. </div>
  5. </template>
  6. <style lang="scss" scoped>
  7. .right-pano {
  8. position: absolute;
  9. width: 340px;
  10. background: rgba(27,27,28,0.8);
  11. backdrop-filter: blur(4px);
  12. top: calc(var(--editor-head-height) + var(--header-top) + 20px);
  13. right: 20px;
  14. z-index: 2000;
  15. overflow-y: auto;
  16. transition: all .3s ease;
  17. max-height: calc(100% - ( var(--editor-head-height) + var(--header-top) + 40px ));
  18. padding: 20px;
  19. border-radius: 4px;
  20. }
  21. </style>