_AddPanelWidget.scss 1019 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. .add-panel-widget-container {
  2. height: 100%;
  3. }
  4. .add-panel-widget {
  5. height: 100%;
  6. }
  7. .add-panel-widget__header {
  8. top: 0;
  9. position: absolute;
  10. padding: 0 15px;
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. cursor: move;
  15. .gicon {
  16. font-size: 30px;
  17. margin-right: $spacer;
  18. }
  19. &:hover {
  20. transition: background-color 0.1s ease-in-out;
  21. background-color: $panel-header-hover-bg;
  22. }
  23. }
  24. .add-panel-widget__link {
  25. display: block;
  26. margin: 0 8px;
  27. width: 130px;
  28. text-align: center;
  29. padding: 8px 0;
  30. }
  31. .add-panel-widget__icon {
  32. margin-bottom: 8px;
  33. .gicon {
  34. color: white;
  35. height: 44px;
  36. width: 53px;
  37. position: relative;
  38. left: 5px;
  39. }
  40. }
  41. .add-panel-widget__close {
  42. margin-left: auto;
  43. background-color: transparent;
  44. border: 0;
  45. font-size: 16px;
  46. margin-right: -10px;
  47. }
  48. .add-panel-widget__btn-container {
  49. display: flex;
  50. justify-content: center;
  51. align-items: center;
  52. height: 100%;
  53. flex-direction: row;
  54. .btn {
  55. margin-bottom: 10px;
  56. }
  57. }