Getting rid of all the rounded corners in Twitter Bootstrap

后端 未结 16 2423
旧时难觅i
旧时难觅i 2020-12-22 17:07

I love Twitter Bootstrap 2.0 - I love how it\'s such a complete library... but I want to make a global modification for a very boxy-not-round site, which is to get rid of al

16条回答
  •  粉色の甜心
    2020-12-22 17:56

    If you are using Bootstrap version < 3...

    With sass/scss

    $baseBorderRadius: 0;
    

    With less

    @baseBorderRadius: 0;
    

    You will need to set this variable before importing the bootstrap. This will affect all wells and navbars.

    Update

    If you are using Bootstrap 3 baseBorderRadius should be border-radius-base

提交回复
热议问题