JSFiddle - React, Tailwind, and code Playground

by oilvier

HTML

<h2>0-9</h2>
<h2>A</h2>

SCSS

.brandList-title {
  position: relative;
  font-size: rem(42px);
  color: $half-baked;

  &:after {
    content: "";
    position: absolute;
    top: 50%;
    left: rem(70px);
    right: 0;
    height: rem(2px);
    background-color: $half-baked;
    transform: translateY(-50%);
  }
}