A minified CSS file means that the code is free from whitespace, comments, and semicolons, along with shorter variable names and functions. This leads to having a more compact file size, reducing the payload sizes and script parse time.
You can find all of your unminified CSS files by using the Google Chrome web dev tool. It'll show you which files should be minified and the potential savings in kibibytes (KiB) that comes from minifying those files. Doing so can improve your page load performance.
It's common for developers to minify the CSS files on their own by removing extra spaces, comments, and code. For example, #000000 can be shortened to #000. However, for sites that don't update too often, you can use an online service that minifies CSS files. You can paste your CSS into the tool, and it will give you a minified version of the CSS. For more advanced use cases, you'll want to set up a workflow that minizies CSS when you deploy code. Some common tools are Gulp or Webpack.
Source: TemplateToaster Blog
Learn how to address minify CSS issues on academy.hubspot.com