Changing the .mx-list > li css class in mxui.css

0
I'm trying to modify the .mx-list > li setting to remove the border from a ListView template.   I don't think this is part of the custom sass file structure; where does this css file live and how should I go about modifying it so that it doesn't get overwritten every time I recompile the project?
asked
1 answers
5

Hi Mark,

You can overrite this in your custom listview SASS file (add below SCSS to overrite). You can find this in theme/styles/sass/custom/components/_listviewscss.

  .mx-list {
        > li {
        border: 0 !important;
        }
    }

 

Hope this helps!

answered