| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- .add-panel-widget-container {
- height: 100%;
- }
- .add-panel-widget {
- height: 100%;
- }
- .add-panel-widget__header {
- top: 0;
- position: absolute;
- padding: 0 15px;
- display: flex;
- align-items: center;
- width: 100%;
- cursor: move;
- .gicon {
- font-size: 30px;
- margin-right: $spacer;
- }
- &:hover {
- transition: background-color 0.1s ease-in-out;
- background-color: $panel-header-hover-bg;
- }
- }
- .add-panel-widget__link {
- display: block;
- margin: 0 8px;
- width: 130px;
- text-align: center;
- padding: 8px 0;
- }
- .add-panel-widget__icon {
- margin-bottom: 8px;
- .gicon {
- color: white;
- height: 44px;
- width: 53px;
- position: relative;
- left: 5px;
- }
- }
- .add-panel-widget__close {
- margin-left: auto;
- background-color: transparent;
- border: 0;
- font-size: 16px;
- margin-right: -10px;
- }
- .add-panel-widget__btn-container {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 100%;
- flex-direction: row;
- .btn {
- margin-bottom: 10px;
- }
- }
|