- ${isLink
+ ${this.renderType === 'link'
? html`
`
- : html`
+ : ''}
+ ${this.renderType === 'button'
+ ? html`
- `}
+ `
+ : ''}
+ ${this.renderType === 'dropdown'
+ ? html`
+
+
+
+ `
+ : ''}
diff --git a/src/components/menu/menu.styles.ts b/src/components/menu/menu.styles.ts
index 2f0e3f3c8..6931773cd 100644
--- a/src/components/menu/menu.styles.ts
+++ b/src/components/menu/menu.styles.ts
@@ -4,6 +4,7 @@ export default css`
:host {
display: block;
position: relative;
+ text-align: start;
background-color: var(--wa-color-surface-raised);
border: var(--wa-border-style) var(--wa-border-width-s) var(--wa-color-surface-border);
border-radius: var(--wa-border-radius-s);