I'm currently working on customizing the standard layout provided in Blazor projects like WASM or server, but I'm a bit perplexed by the top-row px-4
css
classes.
Within the HTML code that appears to define the top row/header section is this snippet:
<div class="top-row px-4">
Despite my efforts, I have not been able to locate the top-row
class in the app.css
file. Can anyone tell me where this class is defined? While I did find the definition of px-4
in the bootstrap.min.css
file, it does not seem to be documented on the Bootstrap website.
Are these classes part of the standard Bootstrap framework or specific to this particular layout? If top-row
is unique to this layout, why can't I find its source anywhere? Similarly, although px-4
is defined in bootstrap.min.css
, there is no mention of it in the official Bootstrap documentation. Could someone provide some insight into the origin of these classes and perhaps share a link to relevant documentation?
For reference, the version of Bootstrap included in Blazor project templates appears to be 5.1.0
.