JSFiddle - React, Tailwind, and code Playground

by Darren Galway

HTML

<h2>Let's goooooo</h2>

SCSS

body {
  display: flex;
  height: 100vh;
  font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
  align-items: center;
  justify-content: center;
}

h2 {
  padding-left: calc(0.5rem + 2px);
  position: relative;
  font-size: 1.125rem;

  &::before {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    content: '';
    width: 2px;
    background: green;
  }
}