Contribution to Debug Toolbar CSS
April 13, 2024 ยท View on GitHub
CodeIgniter uses Dart Sass to generate the debug toolbar's CSS. Therefore, you will need to install it first. You can find further instructions on the official website: https://sass-lang.com/install
Compile SASS files
Open your terminal, and navigate to CodeIgniter's root folder. To generate the CSS file, use the following command:
sass --no-source-map admin/css/debug-toolbar/toolbar.scss system/Debug/Toolbar/Views/toolbar.css
Details:
--no-source-mapis an option which prevents sourcemap files from being generatedadmin/css/debug-toolbar/toolbar.scssis the SASS sourcesystem/Debug/Toolbar/Views/toolbar.cssis he CSS destination