Skip to content

v2.0.3

Compare
Choose a tag to compare
@DiegoCardoso DiegoCardoso released this 12 Sep 08:45
· 53 commits to master since this release

Live Demo →
API Documentation →

Changes Since v2.0.2:

  • 83ec79f Fix Material navbar on mobile with touch-optimized (#118)

  • 2d2bcea Fix Lumo dark theme on Safari and Edge (#117)

  • b6f9a10 close drawer after navigation in demo with router (#115)

⚠️ Note

  • If your App Layout has a style module customizing the navbar/drawer background,
    now it should be changed to target the ::before pseudo-element.
- 	[part="navbar"] {
+ 	[part="navbar"]::before {
		background: #FFF;
	}

-	:host([overlay]) [part="drawer"] {
+	:host([overlay]) [part="drawer"]::before {
		background: #FFF;
	}