Added media queries for .showcase in docs, creating a single-column layout on small screens and a two-column layout on tablet-sized screens when viewing showcase of RN apps.
This commit is contained in:
parent
31565781f2
commit
c7b46a13f9
|
@ -1091,13 +1091,28 @@ div[data-twttr-id] iframe {
|
|||
|
||||
.showcase {
|
||||
margin: 30px auto;
|
||||
width: 25%;
|
||||
width: 100%;
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
vertical-align: top;
|
||||
transition: 0.2s opacity ease-in;
|
||||
}
|
||||
|
||||
@media only screen
|
||||
and (min-device-width: 768px)
|
||||
and (max-device-width: 1024px) {
|
||||
.showcase {
|
||||
width: 50%;
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen
|
||||
and (min-device-width: 1024px) {
|
||||
.showcase {
|
||||
width: 25%;
|
||||
}
|
||||
}
|
||||
|
||||
.showcase:hover {
|
||||
text-decoration: none;
|
||||
opacity: 0.8;
|
||||
|
@ -1124,7 +1139,8 @@ div[data-twttr-id] iframe {
|
|||
border-radius: 20px;
|
||||
}
|
||||
|
||||
@media only screen and (max-device-width : 1024px) {
|
||||
@media only screen
|
||||
and (max-device-width: 1024px) {
|
||||
#content {
|
||||
display: inline;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue