_AddPanelWidget.scss 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 8px;
  11. display: flex;
  12. align-items: center;
  13. width: 100%;
  14. cursor: move;
  15. background: $page-header-bg;
  16. box-shadow: $page-header-shadow;
  17. border-bottom: 1px solid $page-header-border-color;
  18. .gicon {
  19. font-size: 30px;
  20. margin-right: $space-md;
  21. }
  22. &:hover {
  23. transition: background-color 0.1s ease-in-out;
  24. background-color: $panel-header-hover-bg;
  25. }
  26. }
  27. .add-panel-widget__title {
  28. font-size: $font-size-md;
  29. font-weight: $font-weight-semi-bold;
  30. margin-right: $space-xl;
  31. }
  32. .add-panel-widget__link {
  33. margin: 0 $space-sm;
  34. width: 170px;
  35. height: 88px !important;
  36. flex-direction: column !important;
  37. }
  38. .add-panel-widget__icon {
  39. margin-bottom: $space-sm;
  40. .gicon {
  41. color: white;
  42. height: 44px;
  43. width: 53px;
  44. position: relative;
  45. left: 5px;
  46. }
  47. }
  48. .add-panel-widget__create {
  49. display: inherit;
  50. margin-bottom: $space-lg;
  51. // this is to have the big button appear centered
  52. margin-top: 55px;
  53. }
  54. .add-panel-widget__actions {
  55. display: inherit;
  56. }
  57. .add-panel-widget__action {
  58. margin: 0 $space-xs;
  59. }
  60. .add-panel-widget__btn-container {
  61. height: 100%;
  62. display: flex;
  63. justify-content: center;
  64. align-items: center;
  65. flex-direction: column;
  66. }