Skip to content

Instantly share code, notes, and snippets.

@osben
Last active March 2, 2019 01:20
Show Gist options
  • Save osben/7d3a964eaa223f4d0b01be0598bb1682 to your computer and use it in GitHub Desktop.
Save osben/7d3a964eaa223f4d0b01be0598bb1682 to your computer and use it in GitHub Desktop.
Ionic 4 support transparent header OR footer #ionic
ion-header.transparent, ion-footer.transparent {
ion-toolbar {
--background: transparent;
--ion-color-base: transparent !important;
}
/* Remove bottom border on md */
&.header-md::after {
background-image: none;
}
/* Remove bottom border on ios */
&.header-ios ion-toolbar:last-child, &.footer-ios ion-toolbar:last-child {
--border-width: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment