@use "../core/instances" as *;

.documentationpage {
    .text_example_params {
        @include text(left, uppercase, underline);
    }

    .text_example_map {
        @include text((
            align: right,
            transform: lowercase,
            decoration: line-through
        ));
    }

    .text_example_wrap {
        @include text((
            wrap: pretty
        ));
        @include wh(200px);
    }
}
