Skip to content

Commit 590ef65

Browse files
authored
Fix styles in breadcrumb and header (#5)
1 parent 97ad653 commit 590ef65

5 files changed

Lines changed: 5 additions & 4 deletions

File tree

projects/ngx-appshell-example/src/app/app.component.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
[sidenavSections]="sidenavSections"
1414
[sidenavLinks]="sidenavLinks"
1515
[loggedUser]="loggedUser"
16+
[isPlatformPickerOpened]="false"
1617
(userLoggedIn)="login()"
1718
(userLoggedOut)="logout()"
1819
(userProjectPick)="projectPickerChanged($event)"

projects/ngx-appshell/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
A comprehensive Angular library providing pre-built UI components, directives, and schematics for building modern enterprise applications with Material Design.
44

5-
**Version:** 19.0.8
5+
**Version:** 19.0.9
66
**Angular:** >=19.0.0
77

88
## Features

projects/ngx-appshell/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@opendevstack/ngx-appshell",
3-
"version": "19.0.8",
3+
"version": "19.0.9",
44
"description": "A comprehensive Angular library providing pre-built UI components, directives, and schematics for building modern enterprise applications with Material Design.",
55
"author": "OpenDevStack",
66
"repository": {

projects/ngx-appshell/src/lib/components/appshell-breadcrumb/appshell-breadcrumb.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
nav {
1+
appshell-breadcrumb nav {
22
margin-bottom: .5rem;
33
display: flex;
44
align-items: center;

projects/ngx-appshell/src/lib/components/appshell-platform-header/appshell-platform-header.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<nav class="appshell-meta-navigation" aria-label="Top of the header navigation">
22
@if(isPlatformPickerOpened() !== null) {
33
<div class="platform-picker-trigger" [class.opened-widget]="isPlatformPickerOpened()" (click)="openPlatformPicker()" (keypress)="openPlatformPicker()">
4-
<svg width="24" height="24" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="10" y="10" width="20" height="20" fill="#FFFFFF"/><rect x="40" y="10" width="20" height="20" fill="#FFFFFF"/><rect x="70" y="10" width="20" height="20" fill="#FFFFFF"/><rect x="10" y="40" width="20" height="20" fill="#FFFFFF"/><rect x="40" y="40" width="20" height="20" fill="#FFFFFF"/><rect x="70" y="40" width="20" height="20" fill="#FFFFFF"/><rect x="10" y="70" width="20" height="20" fill="#FFFFFF"/><rect x="40" y="70" width="20" height="20" fill="#FFFFFF"/><rect x="70" y="70" width="20" height="20" fill="#FFFFFF"/></svg>
4+
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><rect width="5.53846" height="5.53846" fill="#F4F4F4"/><rect y="9.23077" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect y="18.4615" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="9.23071" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="9.23071" y="9.23077" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="9.23071" y="18.4615" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="18.4615" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="18.4615" y="9.23077" width="5.53846" height="5.53846" fill="#F4F4F4"/><rect x="18.4615" y="18.4615" width="5.53846" height="5.53846" fill="#F4F4F4"/></svg>
55
</div>
66
}
77

0 commit comments

Comments
 (0)