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

Outline Offset

Controls the offset of an element’s outline.

Class Property

oo-0

outline-offset: 0px;

oo-1

outline-offset: 1px;

oo-2

outline-offset: 2px;

oo-3

outline-offset: 3px;

oo-4

outline-offset: 4px;
<button
class="b-1 b-s bc-l-silver-6 bg-white fw-600 oc-indigo oo-4 os-s px-5 py-1 rad-1">
Subscribe
</button>

Using responsive modifiers

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

<div class="oo-1 md:oo-2 ..."></div>

Using hover modifiers

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

<div class="oo-1 h:oo-2 ..."></div>