Skip to content

Commit

Permalink
Merge pull request #219 from econavi/fix-welcome-page
Browse files Browse the repository at this point in the history
Fix welcome page
  • Loading branch information
fey committed Apr 21, 2020
2 parents e68c503 + 21a87da commit 46863dc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -19,3 +19,4 @@ _ide_helper_models.php
public/css
public/js
public/img/*
composer.phar
2 changes: 1 addition & 1 deletion resources/views/components/activity_chart.blade.php
@@ -1,5 +1,5 @@
<div class="graph mt-5">
<div class="d-flex align-items-end flex-column overflow-hidden m-4">
<div class="d-flex justify-content-end overflow-hidden m-4">
<ul class="squares mb-0">
@foreach($chart as $square)
<li data-level="{{ $square }}"></li>
Expand Down
3 changes: 1 addition & 2 deletions resources/views/welcome.blade.php
Expand Up @@ -14,7 +14,6 @@
<div class="col-md-4">
<h2 class="my-3">{{ __('welcome.what_is_here') }}</h2>
<p>{{ __('welcome.about_sicp') }}
<br>
<a href="https://guides.hexlet.io/how-to-learn-sicp/">{{ __('layout.nav.sicp_read') }}</a>
</p>
<h2 class="my-3">{{ __('welcome.features') }}</h2>
Expand All @@ -30,7 +29,7 @@
@endforeach

</ul>
<a class="btn btn-primary" href="{{ (route('my')) }}" role="button">{{ __('layout.welcome.mark_read') }}</a>
<a class="btn btn-primary" href="{{ (route('my')) }}">{{ __('layout.welcome.mark_read') }}</a>
</div>
</div>

Expand Down

0 comments on commit 46863dc

Please sign in to comment.