@@ -122,14 +122,17 @@ export const NewcomersGuideWrapper = styled.section`
122122 .community-collage {
123123 text-align: center ;
124124 min-width: 45vmin;
125-
125+ margin-bottom: 1rem;
126126 }
127127 .community-img{
128128 text-align:center;
129129 }
130130 .table-wrapper{
131131 text-align: center;
132132 margin-bottom: 4rem;
133+ h5 {
134+ margin-bottom: 2.5rem;
135+ }
133136 }
134137 .book-container {
135138 display: flex;
@@ -152,13 +155,14 @@ export const NewcomersGuideWrapper = styled.section`
152155 }
153156
154157 .book {
155- min- width: 200px;
156- min- height: 300px;
158+ width: 200px;
159+ height: 300px;
157160 position: relative;
158161 transform-style: preserve-3d;
159162 transform: rotateY(-30deg);
160163 transition: 1s ease;
161164 animation: 1s ease 0s 1 initAnimation;
165+ overflow: visible;
162166 }
163167
164168 .book:hover {
@@ -170,10 +174,18 @@ export const NewcomersGuideWrapper = styled.section`
170174 top: 0;
171175 left: 0;
172176 background-color: #171a12;
173- width: 200px ;
174- height: 300px ;
177+ width: 100% ;
178+ height: 100% ;
175179 transform: translateZ(25px);
176180 border-radius: 0 2px 2px 0;
181+ overflow: visible;
182+ }
183+
184+ .book > :first-child img {
185+ max-width: 100%;
186+ width: 100%;
187+ height: auto;
188+ object-fit: contain;
177189 }
178190
179191 .book::before {
@@ -182,7 +194,7 @@ export const NewcomersGuideWrapper = styled.section`
182194 left: 0;
183195 top: 3px;
184196 width: 48px;
185- height: 294px ;
197+ height: calc(100% - 6px) ;
186198 transform: translateX(172px) rotateY(90deg);
187199 background: linear-gradient(
188200 90deg,
@@ -215,8 +227,8 @@ export const NewcomersGuideWrapper = styled.section`
215227 top: 0;
216228 left: 0;
217229 content: " ";
218- width: 200px ;
219- height: 300px ;
230+ width: 100% ;
231+ height: 100% ;
220232 transform: translateZ(-25px);
221233 background-color: #292929;
222234 border-radius: 0 2px 2px 0;
@@ -244,7 +256,19 @@ export const NewcomersGuideWrapper = styled.section`
244256 h2 {
245257 margin-top: -1.5rem;
246258 }
259+ }
260+ /* For "Explore the Meshery Community" section */
261+ .community-collage {
262+ order: 2;
263+ }
264+ /* For "Finding an Issue" section - apply to Col */
265+ .col-finding-an-issue {
266+ order: 2;
267+ }
268+ .col-newcomers-form {
269+ margin-bottom: 1.5rem;
247270 }
271+ }
248272 }
249273` ;
250274
0 commit comments