Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_center-block.scss « mixins « bootstrap « stylesheets « assets - github.com/twbs/bootstrap-rubygem.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e06fb5e276e471ac4bd574068254808089695afd (plain)
1
2
3
4
5
6
7
// Center-align a block level element

@mixin center-block() {
  display: block;
  margin-left: auto;
  margin-right: auto;
}