Skip to content

Commit

Permalink
Fix EZP-23829: Paragraph alignment ignored in legacy rendered frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
dpobel committed Jan 20, 2015
1 parent 83a6766 commit 7bf758a
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
@@ -1,6 +1,19 @@
// UTILITY CLASSES
// ---------------

.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}

// Quick floats

.pull-right {
Expand Down
Expand Up @@ -4494,6 +4494,18 @@ a.thumbnail:hover {
font-weight: 200;
line-height: 31.5px;
}
.text-left {
text-align: left;
}
.text-right {
text-align: right;
}
.text-center {
text-align: center;
}
.text-justify {
text-align: justify;
}
.pull-right {
float: right;
}
Expand Down

0 comments on commit 7bf758a

Please sign in to comment.