Skip to content

Commit 2c0bb85

Browse files
committed
Fix: bartificer#27 topBanner shows in narrow, sideBanner in wide
sidebar-left only exists if there's enough room. on narrower screens there is no sidebar and there's a top banner instead.
1 parent df78c21 commit 2c0bb85

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/index.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@
1717
<section id="main" class="col order-2"> <!-- open section for content right of graphic -->
1818

1919
<div class="row"> <!-- open row for topBanner on mobile screens -->
20-
<section id="top-art" class="col order-4 d-inline-flex d-md-none">
20+
<section id="top-art" class="col order-4 d-inline-flex d-lg-none">
2121
<picture>
22-
<!-- show this up to sm -->
23-
<source media="(max-width: 596px)" srcset="/assets/topBanner.png">
22+
<!-- show this up to lg -->
23+
<source media="(max-width: 768px)" srcset="/assets/topBanner.png">
2424
<!-- else show this -->
25-
<img class="img-fluid" alt="XKPasswd - A Secure Memorable Password Generators" src="/assets/sideBanner.png">
25+
<img class="img-fluid" alt="XKPasswd - A Secure Memorable Password Generators" src="/assets/topBanner.png">
2626
</picture>
2727
</section>
2828
</div> <!-- close row for topBanner on mobile screens -->
@@ -293,10 +293,10 @@ <h3>Generate Password(s)</h3>
293293
</section> <!-- close section for content below nav -->
294294
</section> <!-- close section for content right of graphic -->
295295

296-
<section id="sidebar-left" class="col-2 order-1 d-none d-md-inline"> <!-- open section for graphic -->
296+
<section id="sidebar-left" class="col-2 order-1 d-none d-lg-inline"> <!-- open section for graphic -->
297297
<picture>
298-
<!-- else show this -->
299-
<source media="(max-width: 768px)" srcset="/assets/sideBanner.png">
298+
<!-- show this on large and above -->
299+
<source media="(max-width: 992px)" srcset="/assets/sideBanner.png">
300300
<!-- else show this -->
301301
<img class="img-fluid" alt="XKPasswd - A Secure Memorable Password Generators" src="/assets/sideBanner.png">
302302
</picture>

0 commit comments

Comments
 (0)