JSFiddle - React, Tailwind, and code Playground

HTML

<section id="progressish">
    <div id="text">
        <div>100% avklarat</div>
    </div>

    <div id="progressbar">
        <div class="progress" data="bar"></div>
    </div>
</section>

CSS

section#progressish {
  width: 300px;
}

div#text {
	
}

div#text > div {
	margin-bottom: 5px;
	margin-left: 100%;
	min-width: 100px;
	width: auto !important;
	width: 100px;
}

div#progressbar {
	background-color: #d1d1d1;
	height: 10px;
	margin-bottom: 15px;
	width: 100%;
}

div#progressbar > .progress[data="bar"] {
	background-color: #111111;
	height: 10px;
	margin-bottom: 15px;
	width: 100%;
}