Merge pull request #202 from dotnet-architecture/adjusting-navbar-brand

Adjusting navbar brand styles
This commit is contained in:
Eric Fleming
2019-02-01 21:27:31 -05:00
committed by GitHub
2 changed files with 12 additions and 6 deletions

View File

@@ -28,11 +28,11 @@
</environment> </environment>
</head> </head>
<body> <body>
<header class="navbar navbar-light navbar-static-top"> <header class="esh-app-header">
<div class="container"> <div class="container">
<article class="row"> <article class="row">
<section class="col-lg-7 col-md-6 col-xs-12"> <section class="col-lg-7 col-md-6 col-xs-12">
<a asp-area="" asp-page="/Index" class="navbar-brand"> <a asp-area="" asp-page="/Index">
<img src="~/images/brand.png" alt="eShop On Web" /> <img src="~/images/brand.png" alt="eShop On Web" />
</a> </a>
</section> </section>

View File

@@ -4,8 +4,14 @@
margin-top: 2.5rem; margin-top: 2.5rem;
padding-bottom: 2.5rem; padding-bottom: 2.5rem;
padding-top: 2.5rem; padding-top: 2.5rem;
width: 100%; } width: 100%;
.esh-app-footer-brand {
height: 50px;
width: 230px; }
}
.esh-app-footer-brand {
height: 50px;
width: 230px;
}
.esh-app-header {
margin: 15px;
}