12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- @import './node_modules/@waca/ca-ui-toolkit/essentials/essentials';
- .homeDndPrompt {
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- margin-top: 22px;
- .dndIconContainer {
- padding: 16px;
- width: 96px;
- height: 96px;
- margin-bottom: 22px;
- border-radius: 50%;
- @include theming(background-color, ui-03);
- }
- }
- .quickLaunchContainer {
- bottom: 0px;
- position: fixed !important;
- width: calc(100% - 215px);
- @include theming(color, text-04);
- font-size: .875rem;
- .uploadBanner {
- @include theming(background-color, active-primary);
- text-align: center;
- padding: 8px;
- width: 100%;
- min-height: 48px;
- display: flex;
- flex-shrink: 1;
- align-items: center;
- justify-content: center;
- }
- .quickLaunchBanner {
- @include theming(background-color, active-tertiary);
- min-height: 128px;
- display: flex;
- flex-shrink: 1;
- align-items: center;
- justify-content: center;
- .quickLaunchContent {
- display: flex;
- max-width: 1192px;
- margin-left: 48px;
- margin-right: 48px;
- align-items: center;
- justify-content: space-around;
- .quickLaunchText {
- margin-left: auto;
- margin-right: auto;
- .quickLaunchTitle {
- font-size: 1.5rem;
- font-weight: 700;
- margin-bottom: 4px;
- }
- }
- }
- }
- }
- @media only screen and (max-width: 1280px) {
- .quickLaunchContainer {
- width: calc(100% - 63px);
- }
- }
|