File size: 2,237 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 |
@import "@wordpress/base-styles/breakpoints";
@import "@wordpress/base-styles/mixins";
@import "@wordpress/base-styles/variables";
main.get-apps {
.get-apps__wrapper {
display: flex;
flex-direction: column;
}
.get-apps__section {
display: flex;
flex-direction: column;
margin-bottom: 24px;
gap: 24px;
@include break-huge {
flex-direction: row;
}
}
.get-apps__section > div {
width: 100%;
@include break-huge {
width: 50%;
}
}
.get-apps__card-header {
display: flex;
flex-direction: column;
gap: 16px;
}
.get-apps__card-title-container {
display: flex;
flex-direction: column;
gap: 6px;
}
.get-apps__section-title {
font-size: $font-body;
font-weight: 500;
color: var(--studio-gray-50);
margin-bottom: $grid-unit-20;
}
.get-apps__card-title {
font-size: $font-body;
font-weight: 500;
color: var(--studio-gray-80);
}
.get-apps__card-subtitle {
font-size: $font-body-small;
color: var(--studio-gray-50);
font-weight: 400;
margin-bottom: 0;
}
.components-card-body {
padding: 24px;
height: 100%;
display: flex;
gap: 16px;
flex-direction: column;
justify-content: space-between;
}
.get-apps__badges > .app-promo__qr-code {
margin: 0;
}
.get-apps__badges > .app-promo__qr-code > .get-apps__card-text {
font-size: $font-body-extra-small;
}
.get-apps__desktop-link {
font-size: $font-body-extra-small;
}
.get-apps__desktop-button-label {
display: flex;
flex-direction: row;
align-items: center;
gap: 3px;
}
.get-apps__not-available {
font-size: $font-body-extra-small;
}
.get-apps__not-available > div {
margin-top: 16px;
}
.get-apps__also-available {
margin-top: 16px;
display: flex;
flex-direction: column;
gap: 16px;
font-size: $font-body-extra-small;
@include break-medium {
flex-direction: row;
}
}
.get-apps__also-available-list {
display: flex;
flex-direction: row;
gap: 16px;
> a {
display: inline-flex;
gap: 2px;
}
}
.get-apps__desktop-button {
margin-right: 8px;
.split-button__main {
display: inline-flex;
align-items: center;
gap: 8px;
white-space: nowrap;
}
.split-button.has-icon-text .gridicon {
margin-right: 0;
}
}
}
|