PasteChartDialog.scss 945 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. @import "../css/variables.module";
  2. .excalidraw {
  3. .PasteChartDialog {
  4. @media #{$is-mobile-query} {
  5. .Island {
  6. display: flex;
  7. flex-direction: column;
  8. }
  9. }
  10. .container {
  11. display: flex;
  12. align-items: center;
  13. justify-content: space-around;
  14. flex-wrap: wrap;
  15. @media #{$is-mobile-query} {
  16. flex-direction: column;
  17. justify-content: center;
  18. }
  19. }
  20. .ChartPreview {
  21. margin: 8px;
  22. text-align: center;
  23. width: 192px;
  24. height: 128px;
  25. border-radius: 2px;
  26. padding: 1px;
  27. border: 1px solid $oc-gray-4;
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. background: transparent;
  32. div {
  33. display: inline-block;
  34. }
  35. svg {
  36. max-height: 120px;
  37. max-width: 186px;
  38. }
  39. &:hover {
  40. padding: 0;
  41. border: 2px solid $oc-blue-5;
  42. }
  43. }
  44. }
  45. }