I am interested in enhancing the bootstrap source code by creating additional w-XX classes. Specifically, I aim to include both w-40 and w-60. According to the documentation, modifying the $sizes variable is necessary for this customization.
In my custom.scss file, I implement the following changes:
$sizes: (
25: 25%,
40: 40%,
50: 50%,
60: 60%,
75: 75%,
100: 100%,
auto: auto
);
After compiling my scss file, I realize that the new classes I intended to create are not appearing. What step have I overlooked?