We noticed that the CSS that loads in the mmx-quick-order resource includes this definition, which does not include any other selector and so it takes over all input fields on the page. It also loads last with the json resource so it can't be overridden. How can we override this?
Code:
input, textarea { appearance: none; background-color: var(--mmx-color-white); border-radius: var(--mmx-spacing-xs); border: 1px solid var(--mmx-color-grey-02); display: inline-block; font-family: inherit; font-size: 0.8125rem; line-height: 1; padding: calc(1.35em - 1px) calc(1.7em - 1px); width: 100%; height: var(--mmx-quick-order-input-height); }
Comment