This commit is contained in:
Jeremy Thomas
2017-09-18 22:36:53 +01:00
parent 85b822305e
commit c8703bafb9
5 changed files with 77 additions and 7 deletions

View File

@@ -493,6 +493,64 @@ table th {
}
}
.has-text-justified {
text-align: justify !important;
}
@media screen and (max-width: 768px) {
.has-text-justified-mobile {
text-align: justify !important;
}
}
@media screen and (min-width: 769px), print {
.has-text-justified-tablet {
text-align: justify !important;
}
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
.has-text-justified-tablet-only {
text-align: justify !important;
}
}
@media screen and (max-width: 1023px) {
.has-text-justified-touch {
text-align: justify !important;
}
}
@media screen and (min-width: 1024px) {
.has-text-justified-desktop {
text-align: justify !important;
}
}
@media screen and (min-width: 1024px) and (max-width: 1215px) {
.has-text-justified-desktop-only {
text-align: justify !important;
}
}
@media screen and (min-width: 1216px) {
.has-text-justified-widescreen {
text-align: justify !important;
}
}
@media screen and (min-width: 1216px) and (max-width: 1407px) {
.has-text-justified-widescreen-only {
text-align: justify !important;
}
}
@media screen and (min-width: 1408px) {
.has-text-justified-fullhd {
text-align: justify !important;
}
}
.has-text-left {
text-align: left !important;
}
@@ -4892,6 +4950,10 @@ a.tag:hover {
color: #363636;
}
.breadcrumb a:first-child {
padding-left: 0;
}
.breadcrumb li {
-webkit-box-align: center;
-ms-flex-align: center;