123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- .add-panel-widget-container {
- height: 100%;
- }
- .add-panel-widget {
- height: 100%;
- }
- .add-panel-widget__header {
- top: 0;
- position: absolute;
- padding: 0 8px;
- display: flex;
- align-items: center;
- width: 100%;
- cursor: move;
- background: $page-header-bg;
- box-shadow: $page-header-shadow;
- border-bottom: 1px solid $page-header-border-color;
- .gicon {
- font-size: 30px;
- margin-right: $space-md;
- }
- &:hover {
- transition: background-color 0.1s ease-in-out;
- background-color: $panel-header-hover-bg;
- }
- }
- .add-panel-widget__title {
- font-size: $font-size-md;
- font-weight: $font-weight-semi-bold;
- margin-right: $space-xl;
- }
- .add-panel-widget__link {
- margin: 0 $space-sm;
- width: 170px;
- height: 88px !important;
- flex-direction: column !important;
- }
- .add-panel-widget__icon {
- margin-bottom: $space-sm;
- .gicon {
- color: white;
- height: 44px;
- width: 53px;
- position: relative;
- left: 5px;
- }
- }
- .add-panel-widget__create {
- display: inherit;
- margin-bottom: $space-lg;
- // this is to have the big button appear centered
- margin-top: 55px;
- }
- .add-panel-widget__actions {
- display: inherit;
- }
- .add-panel-widget__action {
- margin: 0 $space-xs;
- }
- .add-panel-widget__btn-container {
- height: 100%;
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- }
|