Why Vector skin change significantly when loading this extension?
Example screenshot
Off: https://i.imgur.com/GQYi5hz.png
On: https://i.imgur.com/M9Gr7wW.png
As you may notice everything is a lot more little after applying settings. Also margins and paddings are shorter between images and texts for example.
I'm not using any specific CSS code for format. What it's more strange it's why everything it's way more little
Code used:
$wgHooks['SetupAfterCache'][]=function(){
\Bootstrap\BootstrapManager::getInstance()->addAllBootstrapModules();
return true;
};
$wgHooks['ParserAfterParse'][]=function( Parser &$parser, &$text, StripState &$stripState ){
$parser->getOutput()->addModuleStyles( 'ext.bootstrap.styles' );
$parser->getOutput()->addModuleScripts( 'ext.bootstrap.scripts' );
return true;
};