Change the font-size in html theme
I wonder how can i change the font size in demo1 or demo..etc in html
I not a use vue, spring or some framworks.
Replies (1)
Hi,
If you like to globally change the font size for all elements you can change the root font size you will need to edit src/sass/layout/_variables.custom.scss
// General
$app-general-root-font-size-desktop: 13px;
$app-general-root-font-size-tablet: 12px;
$app-general-root-font-size-mobile: 12px; If you like to change components' font sizes individually you can do it at the HTML level with Bootstrap's utility classes.
Then recompile your assets folder with Gulp or Webpack.
Please note that the build tools are required only in the development environment just to compile the assets when the source folder files are modified. In the hosting/server deployment, you will only need the compile assets, no need to install the build tools dependencies there.
Regards.