Skip to content

Commit

Permalink
Merge pull request laradock#1253 from gbroques/fix-logo-covers-links-…
Browse files Browse the repository at this point in the history
…in-mobile-drawer-menu

Fix logo covering links in mobile drawer menu (Closes laradock#1252)
  • Loading branch information
Mahmoudz authored Nov 14, 2017
2 parents 2fc0f3c + ff20333 commit 9877f04
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<div class="logo">
<img src="{{ $.Site.BaseURL }}{{ . }}">
</div>
Laradock
{{ end }}
<!--<div class="name">-->
<!--<strong>{{ .Site.Title }} {{ with .Site.Params.version }}<span class="version">{{ . }}</span>{{ end }}</strong>-->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,17 @@ font-weight:700;
OVERRIDING THE DEFAULT STYLES - By Mahmoud Zalt ([email protected]) for Laradock.io
*/

.project .logo img{
width: 140px;
height: 140px;

.project .logo img {
max-width: 100%;
height: auto;
background: transparent;
border-radius: 0%;
}

.project .banner {
display: flex;
align-items: center;
font-size: 14px;
font-weight: bold;
}

0 comments on commit 9877f04

Please sign in to comment.