Skip to content
This repository has been archived by the owner on Dec 6, 2024. It is now read-only.

Commit

Permalink
Fix styling isssues
Browse files Browse the repository at this point in the history
  • Loading branch information
bartjroos committed Nov 17, 2017
1 parent 4248e42 commit fe63ace
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -8527,6 +8527,10 @@ footer p {
grid-template-columns: 1fr;
}

.announcements {
grid-column: span 1;
}

footer p {
display: inline;
}
Expand Down
3 changes: 3 additions & 0 deletions resources/assets/sass/app.scss
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ footer p{
.board{
grid-template-columns: 1fr;
}
.announcements{
grid-column: span 1;
}
footer p{
display: inline;
}
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
<body>
<div class="container">
<header>
<h1><a href="">Whiteboards</a></h1>
<h1><a href="{{ route('home') }}">Whiteboards</a></h1>
@if(Auth::check())
<div class="user">
{{ Auth::user()->name }} (
Expand Down

0 comments on commit fe63ace

Please sign in to comment.