Fix icon container width with smaller desktop screens

This commit is contained in:
kushalpandya 2017-07-07 13:24:51 +05:30
parent 39857887ed
commit 7d2a4efe63

View file

@ -54,18 +54,28 @@
} }
} }
.section-admin-welcome { .section-welcome {
/** /**
* This is slight increase over 25% of col-md-offset-3 for * This is slight increase over 25% of col-md-offset-3 for
* admin welcome page * admin welcome page
*/ */
.blank-state-icon.col-md-offset-3 { &.section-admin-welcome .blank-state-icon.col-md-offset-3 {
margin-left: 30%; margin-left: 30%;
@media (max-width: $screen-md-min) { @media (max-width: $screen-md-min) {
margin-left: auto; margin-left: auto;
} }
} }
/**
* This is slight increase over 8.33% of col-md-1 for
* admin/standard user welcome page on smaller desktops
*/
.blank-state-icon.col-md-1 {
@media (min-width: $screen-sm-max) {
width: 10%;
}
}
} }
.blank-state-title { .blank-state-title {