-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: include logo images via CSS to configure them via theme styling (…
…#49, #64) - made html structure of the 3 different headers similar for consistent logo styling closes #49
- Loading branch information
1 parent
fb62ebb
commit a5f49fb
Showing
11 changed files
with
57 additions
and
57 deletions.
There are no files selected for viewing
32 changes: 12 additions & 20 deletions
32
src/app/shell/header/header-checkout/header-checkout.component.html
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 |
---|---|---|
@@ -1,23 +1,15 @@ | ||
<div class="top-header header-checkout"> | ||
<div class="row"> | ||
<div class="container"> | ||
<div class="header-utility col-3 col-md-12"> | ||
<ul class="user-links"> | ||
<li><ish-login-status [logoutOnly]="true"></ish-login-status></li> | ||
</ul> | ||
</div> | ||
<div class="mid-header col-9 col-md-12"> | ||
<div class="logo-wrapper d-md-none"> | ||
<a rel="home" routerLink="/home" class="mobile-logo" data-testing-id="link-home"> | ||
<img src="assets/img/logo_mobile.png" alt="Logo" width="41" height="41" /> | ||
</a> | ||
</div> | ||
<div class="logo-wrapper d-none d-md-block"> | ||
<a rel="home" routerLink="/home" data-testing-id="link-home"> | ||
<img src="assets/img/logo.png" alt="Logo" /> | ||
</a> | ||
</div> | ||
</div> | ||
<div class="header header-checkout container"> | ||
<div class="header-utility col-3 col-md-12"> | ||
<ul class="user-links"> | ||
<li><ish-login-status [logoutOnly]="true"></ish-login-status></li> | ||
</ul> | ||
</div> | ||
<div class="mid-header col-9 col-md-12"> | ||
<div class="logo-wrapper d-md-none"> | ||
<a rel="home" routerLink="/home" class="mobile-logo" data-testing-id="link-home"></a> | ||
</div> | ||
<div class="logo-wrapper d-none d-md-block"> | ||
<a rel="home" routerLink="/home" class="logo" data-testing-id="link-home"></a> | ||
</div> | ||
</div> | ||
</div> |
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
21 changes: 6 additions & 15 deletions
21
src/app/shell/header/header-simple/header-simple.component.html
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 |
---|---|---|
@@ -1,19 +1,10 @@ | ||
<div class="top-header"> | ||
<nav class="container"> | ||
<div class="row"> | ||
<a rel="home" routerLink="/home" class="d-md-none mobile-logo"> | ||
<img src="assets/img/logo_mobile.png" alt="Logo" width="41" height="41" /> | ||
</a> | ||
<div class="header header-simple container"> | ||
<div class="mid-header"> | ||
<div class="logo-wrapper d-none d-md-block"> | ||
<a rel="home" routerLink="/home" class="logo" data-testing-id="link-home"></a> | ||
</div> | ||
</nav> | ||
</div> | ||
|
||
<div class="mid-header"> | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-md-3 logo-wrapper d-none d-md-block"> | ||
<a rel="home" routerLink="/home"> <img src="assets/img/logo.png" alt="Logo" /> </a> | ||
</div> | ||
<div class="logo-wrapper d-md-none"> | ||
<a rel="home" routerLink="/home" class="mobile-logo" data-testing-id="link-home"></a> | ||
</div> | ||
</div> | ||
</div> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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