JSFiddle - React, Tailwind, and code Playground
by Soviut
HTML
<div class="panel">
<div class="status">
Draft
</div>
<div class="body">
this is a panel<br/>
another line
</div>
</div>
CSS
body {
font-family: sans-serif;
}
.panel {
display: flex;
border: solid 1px #EEE;
border-radius: 0.25rem;
overflow: hidden;
}
.status {
transform: rotate(180deg);
padding: 0.1rem;
background: cornflowerblue;
color: white;
text-transform: uppercase;
font-size: 0.75rem;
writing-mode: vertical-rl;
}
.body {
padding: 1rem;
}