JSFiddle - React, Tailwind, and code Playground

HTML

<div class="sidebar-one"></div>

CSS

.sidebar-one {
    height: 600px;
    background: red;
    width: 200px;
}

JavaScript

$(function() {
  var sidebar = $('.sidebar-one');
  sidebar.height(sidebar.height() - 135);
});