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:
parent
22dcbe1211
commit
d1c3d854e9
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ progress {
|
|||
color: green;
|
||||
}
|
||||
|
||||
@media all and (max-width: 1440px) {
|
||||
@media all and (max-width: 1439px) {
|
||||
|
||||
.dashboardHomeRightColumn {
|
||||
margin-top: 1em;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue