Encountering a strange issue here. While working on an Angular 8 MVC C# application, everything is running smoothly with the default browser fonts. However, when integrating a department Nuget package for headers, footers, and menus, all fonts across the website shrink significantly (about 7.5px). I've attempted adjusting the font-size and font-weight within the bootstrap 4.0 body tag to !important:
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
font-size: 1rem !important;
font-weight: 400 !important;
line-height: 1.5;
color: #212529;
text-align: left;
background-color: #fff;
}
Unfortunately, this approach didn't resolve the issue. Any suggestions on what modifications should be made to restore all HTML elements to their default size without being able to alter the Nuget package?