You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Unless I missed something and this is on purpose,) the dist/css/bootstrap-utilities.css file (version 5.2.0) is missing the CSS variables required by certain utilities. For example the .border class has no effect, because --bs-border-width, --bs-border-style and --bs-border-color are undefined.
Reduced test cases
Include bootstrap-utilities.css in your page (and not the rest of Bootstrap).
Test that <div class="m-5">Hello world</div> works correctly (this class is NOT based on a variable).
Test that <div class="border">Hello world</div> has no effect (this class is based on the unset --bs-border-width, --bs-border-style and --bs-border-color variables).
What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of Bootstrap are you using?
v5.2.0
The text was updated successfully, but these errors were encountered:
ericleib
added a commit
to ericleib/bootstrap
that referenced
this issue
Oct 25, 2022
Prerequisites
Describe the issue
(Unless I missed something and this is on purpose,) the dist/css/bootstrap-utilities.css file (version 5.2.0) is missing the CSS variables required by certain utilities. For example the
.border
class has no effect, because--bs-border-width
,--bs-border-style
and--bs-border-color
are undefined.Reduced test cases
<div class="m-5">Hello world</div>
works correctly (this class is NOT based on a variable).<div class="border">Hello world</div>
has no effect (this class is based on the unset--bs-border-width
,--bs-border-style
and--bs-border-color
variables).What operating system(s) are you seeing the problem on?
Windows
What browser(s) are you seeing the problem on?
Chrome
What version of Bootstrap are you using?
v5.2.0
The text was updated successfully, but these errors were encountered: