This repository has been archived on 2020-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
understrap/sass/underscores/modules/_alignments.scss

15 lines
181 B
SCSS
Raw Normal View History

2014-12-10 18:29:31 +00:00
.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
.aligncenter {
@include center-block;
}