Running into the same issue. @firstlut Could you describe how to patch the main.css file to look like the _base.css file? I am unclear on how to do this.
- πΊπΈUnited States firstlut
I'm assuming you're asking about making patches. Here's how I learned to do it:
go to module directory root
run git init
run git add *; git commit -m "init"
make changes to the file
run git diff > name_path_however.patch
move patch to ./patches directory
add patch entry to ./patches/composer.patches.json
run composer installSome people list their patches in their main composer.json file, but we have a separate composer file and directory just for patches (we use A LOT of them).