Skip to content

Commit

Permalink
fix icons in demo build
Browse files Browse the repository at this point in the history
  • Loading branch information
silicia-apps committed Oct 26, 2023
1 parent 336cd58 commit 688778d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
13 changes: 12 additions & 1 deletion apps/demo/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,18 @@
"main": "apps/demo/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/demo/tsconfig.app.json",
"assets": ["apps/demo/src/assets"],
"assets": [
{
"glob": "**/*",
"input": "src/assets",
"output": "assets"
},
{
"glob": "**/*.svg",
"input": "node_modules/ionicons/dist/ionicons/svg",
"output": "./svg"
}
],
"styles": [
"apps/demo/src/theme/variables.scss",
"apps/demo/src/global.scss"
Expand Down
7 changes: 7 additions & 0 deletions libs/core/src/lib/components/tabs/tabs.component.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,3 +30,10 @@
}
}
}

:host[visible=false] {
ion-tab-bar {
/* Your styles for the selected ion-tab-bar here */
display: none;
}
}

0 comments on commit 688778d

Please sign in to comment.