Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Ademking
Created March 31, 2019 06:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ademking/972ae1a3a3f410c6bd62e33544a79c00 to your computer and use it in GitHub Desktop.
Save Ademking/972ae1a3a3f410c6bd62e33544a79c00 to your computer and use it in GitHub Desktop.
Ionic 4: change SideMenu Background color

Use this CSS

ion-menu {
  --ion-background-color: var(--ion-color-primary);
  --ion-text-color: var(--ion-color-primary-contrast);

  ion-toolbar {
    --background: var(--ion-color-primary);
  }

  ion-list {/* optional, but it needs when you use gradient as a background color.*/
    background: transparent;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment