I attempted to enable responsive font sizes in Bootstrap 4.3.1 by setting the $enable-responsive-font-sizes variable to true, but I did not see any changes.
Below is the code from my template.html file:
<div class="m-2" id="role">
<em class="fas fa-user-tie fa-fw mr-2"></em
><span class="font-weight-bold">Role: </span>{{ member?.role }}
</div>
<div class="m-2" id="email">
<em class="fas fa-at fa-fw mr-2"></em
><span class="font-weight-bold">Email: </span>{{ member?.email }}
</div>
<div class="m-2" id="username">
<em class="fas fa-file-signature fa-fw mr-2"></em
><span class="font-weight-bold">Username: </span>{{ member?.username }}
</div>
<div class="m-2" id="last-update">
<em class="fas fa-clock fa-fw mr-2"></em
><span class="font-weight-bold">Last update: </span
>{{ member?.lastUpdate | date: "short" }}
</div>
<div class="m-2" id="comments">
<em class="fas fa-comments fa-fw mr-2"></em
><span class="font-weight-bold">Comments: </span> {{ member?.surcomments }}
xzcxzcxzcxzcxzxzczxcxzczxcxzcxzcxzcxzcxzczxczxcxzcholaadsadsadzxczsdsdsaasdsadsadsadsadasdsadsadas
</div>
Here is a snippet of my scss file:
$enable-responsive-font-sizes: true;
@import "../../../../../assets/bootstrap-4.3.1/dist/css/bootstrap.css";
This is how it looks in the desktop version:
https://i.stack.imgur.com/RgCtR.jpg
However, in the mobile version, the text does not appear to be responsive as expected: