0
frogwang94 created
I downloaded the source code of lepton theme. and found the font size variable defined in _variable.scss the $base_font_size is defined as 14px, which i would like to change to 13px
But how do I compile the scss file to get the updated css file. (which i would like to use in my blazor webassembly project)
1 Answer(s)
-
0
You can compile CSS files by running
yarn gulp
command inVolo.Abp.AspNetCore.Mvc.UI.Theme.Lepton
folder.If gulp isn't installed, you can use
npm install gulp
command.Then you need to run
abp bundle
command for your Blazor WebAssembly project to update blazor wasm bundles.