Backend for songs.zachdecook.com
- sonc page: make title and author smaller
| -rw-r--r-- | laravel/resources/views/song.blade.php | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/laravel/resources/views/song.blade.php b/laravel/resources/views/song.blade.php index dfc7f75..ea5eb7f 100644 --- a/laravel/resources/views/song.blade.php +++ b/laravel/resources/views/song.blade.php @@ -25,8 +25,7 @@ @endif </div> - <h2>{{$song['title']}}</h2> - <h3>{{$song->author}}</h3> + <h4>{{$song['title']}} - {{$song->author}}</h4> @if($song->key) Key: {{$song->key}}<br/> @endif |