forked from laradock/laradock
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request laradock#1253 from gbroques/fix-logo-covers-links-…
…in-mobile-drawer-menu Fix logo covering links in mobile drawer menu (Closes laradock#1252)
- Loading branch information
Showing
2 changed files
with
12 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
} |