Using tailwindcss bg-* in modal content view

I am trying to make badge for a tag using rounded-full and bg-success / bg-green-500 inside a modal content. But nothing changed, is there something I missed or should configure?

Here is the code
  <div class="flex flex-col md:flex-row md:justify-between items-center">
        <div>
            <span class="text-xs">ID</span>
            <br />
            <span class="text-s font-semibold select-all">
                {{ $order->id }}
            </span>
        </div>
        <span class="text-lg font-semibold bg-success rounded-full" @class([
            'bg-success' => $order->status == 1,
            'bg-danger' => $order->status == 2,
            'bg-warning' => $order->status == 3,
        ])>
            {{ $order->status_text  }}
        </span>
    </div>
Was this page helpful?