styles.css
63 lines
| 1 | #demo-image-hub-media-modal-root, |
| 2 | .demo-image-hub-media-modal-tab { |
| 3 | height: 100%; |
| 4 | width: 100%; |
| 5 | } |
| 6 | |
| 7 | .demo-image-hub-centered-container { |
| 8 | width: 100%; |
| 9 | height: 100%; |
| 10 | display: flex; |
| 11 | flex-direction: column; |
| 12 | align-items: center; |
| 13 | justify-content: center; |
| 14 | } |
| 15 | |
| 16 | .demo-image-hub-centered-container > img { |
| 17 | width: 100px; |
| 18 | height: 100px; |
| 19 | } |
| 20 | .demo-image-hub-centered-container > h1 { |
| 21 | font-family: OpenSans, sans-serif; |
| 22 | font-weight: 700; |
| 23 | font-size: 16px; |
| 24 | letter-spacing: 0px; |
| 25 | line-height: 16px; |
| 26 | } |
| 27 | .demo-image-hub-centered-container > p { |
| 28 | max-width: 600px; |
| 29 | text-align: center; |
| 30 | font-weight: 400; |
| 31 | font-family: OpenSans, sans-serif; |
| 32 | font-size: 13px; |
| 33 | letter-spacing: 0px; |
| 34 | line-height: 16px; |
| 35 | } |
| 36 | |
| 37 | .demo-image-hub-centered-container:not(#extra-1) > button { |
| 38 | font-family: OpenSans, sans-serif; |
| 39 | font-size: 13px; |
| 40 | |
| 41 | cursor: pointer; |
| 42 | border: none; |
| 43 | color: white; |
| 44 | padding: 16px; |
| 45 | |
| 46 | border-radius: 2px; |
| 47 | height: auto; |
| 48 | } |
| 49 | |
| 50 | #menu-item-image-hub-media-modal-tab-content { |
| 51 | display: none; |
| 52 | justify-content: flex-start; |
| 53 | gap: 5px; |
| 54 | align-content: center; |
| 55 | &[data-type="image"] { |
| 56 | display: flex; |
| 57 | } |
| 58 | |
| 59 | > div { |
| 60 | order: -1; |
| 61 | } |
| 62 | } |
| 63 |