Skip to content

Commit

Permalink
Fix test errors.
Browse files Browse the repository at this point in the history
  • Loading branch information
XhmikosR committed Nov 28, 2017
1 parent bc7c566 commit 85d74ec
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions docs/4.0/examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
<h2>{{ entry.category | capitalize }}</h2>
<p>{{ entry.description }}</p>
{% for example in entry.examples %}
{% if forloop.first %}<div class="row">{% endif %}
{% if forloop.first %}<div class="row">{% endif %}
<div class="col-6 col-md-4 col-lg-3">
<a href="{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/{{ example.name | slugify }}/">
<img class="img-thumbnail mb-3" src="{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/screenshots/{{ example.name | slugify }}.png" width="800" height="600">
<img class="img-thumbnail mb-3" src="{{ site.baseurl }}/docs/{{ site.docs_version }}/examples/screenshots/{{ example.name | slugify }}.png" alt="{{ example.name }} screenshot" width="800" height="600">
<h5 class="mb-1">{{ example.name }}</h5>
</a>
<p>{{ example.description }}</p>
</div>
{% if forloop.last %}</div>{% endif %}
{% if forloop.last %}</div>{% endif %}
{% endfor %}
{% endfor %}
2 changes: 1 addition & 1 deletion docs/4.0/examples/sign-in/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<body class="text-center">
<form class="form-signin">
<img class="mb-4" src="https://getbootstrap.com/assets/brand/bootstrap-solid.svg" alt="" width=72 height=72>
<img class="mb-4" src="https://getbootstrap.com/assets/brand/bootstrap-solid.svg" alt="" width="72" height="72">
<h1 class="h3 mb-3 font-weight-normal">Please sign in</h1>
<label for="inputEmail" class="sr-only">Email address</label>
<input type="email" id="inputEmail" class="form-control" placeholder="Email address" required autofocus>
Expand Down
4 changes: 2 additions & 2 deletions docs/4.0/examples/sign-in/signin.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ body {
body {
display: -ms-flexbox;
display: flex;
-ms-flex-pack: center;
justify-content: center;
-ms-flex-align: center;
-ms-flex-pack: center;
align-items: center;
justify-content: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
Expand Down

0 comments on commit 85d74ec

Please sign in to comment.