Skip to content

Commit

Permalink
Merge pull request #96 from thinktandem/wcag
Browse files Browse the repository at this point in the history
#95 first glaring errors fixes
  • Loading branch information
John Ouellet authored Jan 18, 2018
2 parents 8204230 + ff7ac15 commit 48dbc7a
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 8 deletions.
12 changes: 12 additions & 0 deletions src/styles/pages/_homepage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,18 @@
}

#featured-posts {
.row.header {
border-top: 1px solid $brand-primary;

.col-md-6 {
border-left: 1px solid $brand-primary;

&:first-child {
border-left: 0;
}
}
}

@media (max-width: 767px) {
position: relative;
top: -7em;
Expand Down
6 changes: 0 additions & 6 deletions templates/components/organisms/featured/featured.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@
{% for article in featuredArticles %}
<div class="col-md-6 featured-post">

<div class="tags">
{% for tag in article.tags %}
<a href="blog/{{ tag.name }}">{{ tag.name }}</a>
{% endfor %}
</div>

<div class="title">
<a href="{{ 'blog/' + article.date | date('Y/m/d') + '/' + article.title | slug }}">{{ article.title }}</a>
</div>
Expand Down
4 changes: 4 additions & 0 deletions templates/components/organisms/footer/_footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,10 @@ footer {
}
a {
font-size: 3.0em;

&:hover {
text-decoration: none !important;
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion templates/components/organisms/footer/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ <h2 class="title-widget">Process</h2>
<h2 class="text-center">Engage with all the socials.</h2>
<div class="col-xs-12 icons text-center">
{% for navItem in navigation.socialfooter %}
<a href="{{ navItem.url }}" title="{{ navItem.name }}">
<a href="{{ navItem.url }}" title="{{ navItem.name }}" aria-label="Click for Tandem's {{ navItem.name }}">
<i class="fa {{ navItem.icon }}" aria-hidden="true"></i>
</a>
{% endfor %}
Expand Down
3 changes: 2 additions & 1 deletion templates/components/organisms/header/header.html
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
<div class="navbar-header">
<button class="navbar-toggle" type="button" data-toggle="collapse" data-target=".bs-navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand" title="Tandem Logo">
<a href="/" class="navbar-brand" title="Tandem Logo" aria-label="Tandem Logo">
<div class="tandem-logo"></div>
</a>
</div>
Expand Down

0 comments on commit 48dbc7a

Please sign in to comment.