Commit 16fedb4d authored by Filipa Lacerda's avatar Filipa Lacerda

Merge branch '2802-environments-deploy-boards' into 'master'

Fix alignment of deploy board toggle; hide deploy boards on mobile

Closes #2802

See merge request !2646
parents 2c6b525c e157539f
......@@ -255,10 +255,19 @@
}
}
.deploy-board-icon i {
cursor: pointer;
color: $layout-link-gray;
padding-right: 10px;
.deploy-board-icon {
display: none;
@media (min-width: $screen-md-min) {
float: left;
display: block;
}
i {
cursor: pointer;
color: $layout-link-gray;
padding-right: 10px;
}
}
.deploy-board {
......
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