JSFiddle - React, Tailwind, and code Playground

by Hugo Carneiro

HTML

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<div class="section-A reverse">
  <div class="text-wrapper">
      <h3>Managing orders</h3>
    <ul>
<li>When orders are submitted they are visible on a screen for staff members</li>
<li>The order list can be displayed on a tablet or computer</li>
<li>Orders can be entered into a POS or written down for fulfilment, you do not have to change your current process to use this app</li>
<li>Orders include the table and customer details in case you need to discuss the order with the customer</li>
<li>Orders can be marked as completed or declined once they are processed</li>
</ul>
<div class="dark-button-wrapper">
    <a href="/create-free-account/" class="dark-button" alt="Try Fliplet Studio">Start now for free</a>
  </div>
  </div>
  <div class="image-wrapper">
    <img class="studio-header-image" src="https://fliplet.com/wp-content/uploads/2020/06/4b.png">
  </div>
</div>

CSS

.section-A {
  width: 100%;
  display: flex;
  padding: 7vh 5% 7vh 5%;
  background-color: #f8f6f7;
  margin: 0 0 6px 0;
}

.section-A.reverse {
  padding: 60px 0;
  flex-direction: column;
}

.section-A .text-wrapper {
  padding: 0 5vw;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-A .image-wrapper {
  padding: 0 5vw;
  margin: 30px 0 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}

img {
  max-width: 100%;
  height: auto;
}