From 02f225bca705cadccfbeba086fca9ba7ea0c53ed Mon Sep 17 00:00:00 2001 From: "Patrik J. Braun" Date: Fri, 22 Sep 2023 22:45:26 +0200 Subject: [PATCH] Fix doc UI #725 --- docs/style.css | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/style.css b/docs/style.css index 139f24b4..3985b84a 100644 --- a/docs/style.css +++ b/docs/style.css @@ -145,6 +145,14 @@ hr { margin-bottom: 30px; } + .row.feature:nth-child(odd) .feature-image{ order: 2; } + +/*Medium devices (tablets, 768px and up)*/ +@media (max-width: 768px) { + .row.feature .feature-image{ + order: 2; + } +}