Remove all rounded corners from Bootstrap 3 using Less
A Bootstrap 3 design I am working on requires square rather than the defaultĀ rounded css corners. The quick and easy solution involvesĀ overridingĀ the values of only 5 Less variables in my own Less variables file:
1 2 3 4 5 |
@border-radius-base: 0; @border-radius-large: 0; @border-radius-small: 0; @pager-border-radius: 0; @badge-border-radius: 0; |
There are a lot of other variables in Bootstrap for setting various border radius’, but all of them use one […]
Continue reading →