I am building very simple interface, something like Slack. But while doing so, the left navigation makes some padding from the body, however I made padding equals zero and margin.
.app {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}
.leftNav {
  border: 1px solid black;
  height: 100vh;
  padding: 20px;
  margin: 0;
}
.main {
  padding: 10px;
}
<div class="app">
      <div class="leftNav">left navigation</div>
      <div class="main">main content</div>
    </div>