Resolve 1440px Dashboard Layout conflict

When browser is exactly 1440px, unnecessary top margin added to first
right column, resulting in uneven column alignment. Positioning of right
column is also dependent on min-width 1440px in another location.
Changing to 1439px here resolves the conflict.
This commit is contained in:
bigjohn322 2014-11-28 12:38:00 -06:00
parent 22dcbe1211
commit d1c3d854e9

View file

@ -786,7 +786,7 @@ progress {
color: green;
}
@media all and (max-width: 1440px) {
@media all and (max-width: 1439px) {
.dashboardHomeRightColumn {
margin-top: 1em;