I removed bootstrap at work (in favor of Bourbon and Neat). For context, I disagree with Bootstrap's framework design decisions, our app had a 3000-line CSS override file, and we wanted to make our two-year-old web app responsive, so we decided to gut Bootstrap entirely. The process took a few months, including a whole redesign process.<p>For an existing app, you can't just remove bootstrap and put in something new. As you probably realize by now, everything will just break.<p>Instead, you need to update individual pages along the way. This process is preferable to removing bootstrap and re-implementing your pages all in one giant pull request since it allows your team to QA iteratively.<p>For us, we redesigned our app, made it responsive, and also used another library in addition to removing Bootstrap. There was a lot more nuance involved, but for example, I started first by redoing the header and footer, then I moved onto individual pages. You can probably just start by re-implementing common mixins and modules first. Then you can move onto the actual templates and start removing your .rows and .span divs page-by-page.<p>I wrote about the process in depth here: <a href="https://medium.com/anyperk-product-engineering/anyperks-responsive-design-overhaul-with-bourbon-and-neat-8fd487bbce03" rel="nofollow">https://medium.com/anyperk-product-engineering/anyperks-resp...</a>