Skip to content
Get ready for the next version of Yumma CSS, which is going to be amazing!

Appearance

Utilities to disable the styling of the original form controls.

Class Property

a-auto

appearance: auto;

a-none

appearance: none;

Using responsive modifiers

Using responsive breakpoints like sm:a-*, md:a-*, lg:a-*, and xxl:a-* allows targeting specific utilities in different viewports.

<div class="a-none md:a-auto ..."></div>

Using hover modifiers

Using :hover modifiers such as h:a-* allows you to override elements and change their values when hovering over them.

<div class="a-none h:a-auto ..."></div>