Problem/Motivation
views.module.css includes the following rules:
/* table style column align */
.views-align-left {
text-align: left;
}
.views-align-right {
text-align: right;
}
.views-align-center {
text-align: center;
}
system.align.css has the following:
.text-align-left {
text-align: left;
}
.text-align-right {
text-align: right;
}
.text-align-center {
text-align: center;
}
.text-align-justify {
text-align: justify;
}
Spot the difference.
Steps to reproduce
Proposed resolution
Use the core classes instead.