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.

_popover.scss 396B

1234567891011121314151617181920212223242526272829
  1. .popover {
  2. margin: -16px -24px;
  3. z-index: $popoverZ;
  4. .popover-content {
  5. margin: 16px 24px;
  6. position: relative;
  7. &.top {
  8. bottom: 8px;
  9. }
  10. &.bottom {
  11. top: 8px;
  12. }
  13. &.left {
  14. right: 8px;
  15. }
  16. &.right {
  17. left: 8px;
  18. }
  19. }
  20. }
  21. .excalidraw .popover {
  22. margin: 0;
  23. }