Commit 7d2a4efe authored by kushalpandya's avatar kushalpandya

Fix icon container width with smaller desktop screens

parent 39857887
......@@ -54,18 +54,28 @@
}
}
.section-admin-welcome {
.section-welcome {
/**
* This is slight increase over 25% of col-md-offset-3 for
* admin welcome page
*/
.blank-state-icon.col-md-offset-3 {
&.section-admin-welcome .blank-state-icon.col-md-offset-3 {
margin-left: 30%;
@media (max-width: $screen-md-min) {
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 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment