Improve text and image utility classes
This commit is contained in:
parent
ab80d45a45
commit
cc54e61ae7
|
@ -1,5 +1,5 @@
|
|||
//
|
||||
// Text Alignment
|
||||
// Alignment
|
||||
//
|
||||
|
||||
.align-baseline { vertical-align: baseline !important; } // Browser default
|
||||
|
@ -21,6 +21,19 @@ a img.align-center {
|
|||
margin-right: auto;
|
||||
}
|
||||
|
||||
figure.align-center {
|
||||
|
||||
img {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
figcaption {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
.align-right,
|
||||
a img.align-right {
|
||||
float: right;
|
||||
|
|
|
@ -6,7 +6,6 @@
|
|||
|
||||
.text-justify { text-align: justify !important; }
|
||||
.text-nowrap { white-space: nowrap !important; }
|
||||
.text-truncate { @include text-truncate; }
|
||||
.text-left { text-align: left !important; }
|
||||
.text-right { text-align: right !important; }
|
||||
.text-center { text-align: center !important; }
|
||||
|
@ -16,6 +15,7 @@
|
|||
.text-lowercase { text-transform: lowercase !important; }
|
||||
.text-uppercase { text-transform: uppercase !important; }
|
||||
.text-capitalize { text-transform: capitalize !important; }
|
||||
.text-truncate { @include text-truncate; }
|
||||
|
||||
// Sizing
|
||||
|
||||
|
|
Loading…
Reference in New Issue