JSFiddle - React, Tailwind, and code Playground

by michananya

HTML

<div class='container'>
  <div class="box results">results<br>results<br>results<br>results<br>results<br>results<br>
  </div>
  <div class="box info">Info</div>

</div>

CSS

html {
   height: 100%; 
}
body {
   height: 100%; 
   margin: 0;
}
.container {
  width: 100%;
  display: flex;
  flex-flow: row wrap-reverse;
  overflow: hidden;
}

.box {
  background: #f2f2f2;
  box-sizing: border-box;
}
.box.results {
  width: 70%;
  min-width: 600px;
  flex-shrink: 0;
}
.box.info {
  width: 30%;
  min-width: 150px;
  flex-shrink: 1;
}