JSFiddle - React, Tailwind, and code Playground
by oilvier
HTML
<div class="foo">
<div><span></span>
<h2>Titre</h2>
</div>
</div>
SCSS
html,
body {height: 100%;}
.foo {
display: flex;
flex-direction: column;
justify
height: 100%;
background-color: beige;
}
span {
display: inline-block;
width: 1em;
height: 1em;
font-size: 40px;
background-color: tomato;
}
div {
margin:auto 0;
}