Bootstrap text-truncate is causing the checkbox and text to appear on separate lines in the following example. How can I adjust it to have the text right after the checkbox?
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Hello World</title>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a0cad1d5c5d2d9e0938e958e91">[email protected]</a>/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="1e7c71716a6d6a6c7f6e5e2a302b302c">[email protected]</a>/dist/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/<a href="/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="f0929f9f848384829180b0c4dec5dec2">[email protected]</a>/dist/css/bootstrap.min.css"/>
</head>
<body class="body-bg-color">
<div class="container">
<div class="card" style="min-height: 10rem; width: 350px">
<div class="card-header">Hello World</div>
<ul id="issues" class="list-group list-group-flush list-group-mine">
<li class="list-group-item">
<input type="checkbox" checked></input>
<label class="text-truncate" style="max-width: 100%">Praeterea iter est quasdam res quas ex communi. Praeterea iter est quasdam res quas ex communi.</label>
</li>
</ul>
</div>
</div>
</body>
</html>