Skip to content

Commit 2d5bf6d

Browse files
timothyisMatthew Sweeney
authored and
Matthew Sweeney
committed
Fix overflow on mobile (#1543)
1 parent 0409a93 commit 2d5bf6d

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/quickstarts/quickstarts.js

+6
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,12 @@ export default function Quickstarts({ children }) {
4949
.more.expanded.finished {
5050
overflow: visible;
5151
}
52+
53+
@media screen and (max-width: 600px) {
54+
.more.expanded {
55+
max-height: ${more.length * 251}px;
56+
}
57+
}
5258
`}</style>
5359
</>
5460
)

0 commit comments

Comments
 (0)