05-04-2020, 03:50 PM
(This post was last modified: 05-04-2020, 03:52 PM by prodeveloper.)
my html code in my angular component, i automatically have :
While I would like that :
I search on my settings.json but i don't know where i can't change that... Any Suggestions ?
Code:
<a
class="text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-no-wrap uppercase text-white"
href="#pablo"
>
pink Color
</a>
<button
class="cursor-pointer text-xl leading-none px-3 py-1 border border-solid border-transparent rounded bg-transparent block lg:hidden outline-none focus:outline-none"
type="button"
>
<span class="block relative w-6 h-px rounded-sm bg-white"></span>
<span
class="block relative w-6 h-px rounded-sm bg-white mt-1"
></span>
<span
class="block relative w-6 h-px rounded-sm bg-white mt-1"
></span>
</button>
While I would like that :
Code:
<a class="text-sm font-bold leading-relaxed inline-block mr-4 py-2 whitespace-no-wrap uppercase text-white" href="#pablo">
pink Color
</a>
<button class="cursor-pointer text-xl leading-none px-3 py-1 border border-solid border-transparent rounded bg-transparent block lg:hidden outline-none focus:outline-none" type="button">
<span class="block relative w-6 h-px rounded-sm bg-white"></span>
<span class="block relative w-6 h-px rounded-sm bg-white mt-1"></span>
<span class="block relative w-6 h-px rounded-sm bg-white mt-1"></span>
</button>