Failed to construct 'CustomElement' solution + 1 size q #5496
-
Hi everyone! But I have another question and it's unanswered: how to change the text size in the dropdown menu of an |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
I believe the tabs attribute hydration error was fixed in #5463 and released in For styling, you should be able to set <style>
md-select-option {
--md-menu-item-label-text-size: 24px;
--md-menu-item-label-text-line-height: 32px;
}
</style>
<md-outlined-select label="Select">
<md-select-option>First</md-select-option>
<md-select-option>Second</md-select-option>
</md-outlined-select> |
Beta Was this translation helpful? Give feedback.
I believe the tabs attribute hydration error was fixed in #5463 and released in
v1.3.0
. Can you try updating to see if that fixes it?For styling, you should be able to set
--md-menu-item-*
custom properties on the<md-select-option>
.Playground demo