Skip to content

Commit 6371e7e

Browse files
Changed subtitles for events and contact page (shorter versions).
Removed no padding class from upcoming events in events page. Made media query for .page__background-img to target precisely small mobile screens as it was causing issues with large screens.
1 parent fcfdb36 commit 6371e7e

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

_pages/03_events.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<div class="events-page__title-container row container-fluid">
2323
<div class="col-sm-12">
2424
<h1 class="events-page__page-title">Events</h1>
25-
<h2 class="events-page__page-subtitle">See What's New And What We Did Already</h2>
25+
<h2 class="events-page__page-subtitle">Find Out What We Do</h2>
2626
</div>
2727
</div>
2828
</div>
2929

3030
<div class="events-page__outer-container container-fluid">
3131
<div class="row">
32-
<div class="col-12 no-padding-x">
32+
<div class="col-12">
3333
<h2 class="events-page__upcoming-section-title">Upcoming Events</h2>
3434
{% include events_array_generator.html future_events = true %}
3535
{% for post in posts %}

_pages/04_contact.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
<div class="contact__page-title-container row container-fluid">
2323
<div class="col-sm-12">
2424
<h1 class="contact__page-title">Contact Us</h1>
25-
<h2 class="contact__page-subtitle">Got An Idea? Can You Help Us? Let Us Know</h2>
25+
<h2 class="contact__page-subtitle">We Are Happy To Help</h2>
2626
</div>
2727
</div>
2828
</div>

_sass/style.scss

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ a {
5151
}
5252
}
5353

54-
@media (orientation: landscape){
54+
@media (max-height: 400px) and (orientation: landscape){
5555
.page__background-img {
5656
min-height: 250px;
57+
width: 100%;
5758
}
5859
}
5960

@@ -67,6 +68,7 @@ a {
6768
transform: translateY(-50%);
6869
}
6970

71+
7072
/* Classes to change order of collapsed columns on mobiles*/
7173
@media (max-width: 767px) {
7274
.first-on-mobile {

0 commit comments

Comments
 (0)