Skip to content
Snippets Groups Projects
Commit 16fedb4d authored by Filipa Lacerda's avatar Filipa Lacerda
Browse files

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
No related branches found
No related tags found
1 merge request!2646Fix alignment of deploy board toggle; hide deploy boards on mobile
Pipeline #
Loading
Loading
@@ -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 {
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment