Why is my button caption rendered in capitals when text is mixed case?

1
Looking around my page it seems all buttons have capitalised captions. I'd like the option to not capitalise. How do I do this?
asked
1 answers
4

This is a new default of the DX themes.

SASS: Edit theme/sass/custom/components/_buttons.scss

In .mx-button add

text-transform: none;

CSS:

find .mx-button and make the same change.

More info about customizing a DX theme: https://world.mendix.com/display/public/howto50/Setup+Mendix+UI+Framework

answered