diff --git a/website/src/react-native/css/react-native.css b/website/src/react-native/css/react-native.css index 9ac2edf04..ee2c45016 100644 --- a/website/src/react-native/css/react-native.css +++ b/website/src/react-native/css/react-native.css @@ -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; }