Unified Token System
Consistency across microfrontends thanks to a shared design system.
uStatic CSS solves the problems of typical utility frameworks in microfrontends:
Unified Token System
Consistency across microfrontends thanks to a shared design system.
Modular Loading
Load only the styles you need — no extra CSS in your bundle.
Runtime Activation
Activate classes dynamically when needed.
SSR Compatible
Works safely on both server and browser.
<!-- Card with flexbox --><div class="flex justify-between items-center p-4 bg-white border border-gray-200 rounded"> <span class="text-lg font-semibold text-gray-800">Title</span> <button class="px-4 py-2 bg-blue-500 text-white rounded hover:bg-blue-600 cursor-pointer"> Button </button></div>