I have a Django application with which I am using the django-pipeline package and bootstrap.css:
PIPELINE_CSS = {
'myCSS': {
'source_filenames': (
'css/bootstrap.css',
'css/bootstrapoverride.css',
),
'output_filename': 'bootmin.css',
'variant': 'datauri',
},
}
As you can see above I have included an additional file "bootstrapoverride.css" which I was hoping to use to override some features of Bootstrap, for instance in my override file:
.navbar {
min-height: 100px;
}
So I thought this may work, but no override is happening, maybe this is not possible using pipeline. I would like to avoid editing the bootstrap.css file directly. Thank you for any insight here.