Commit 973bb449 authored by Annabel Dunstone Gray's avatar Annabel Dunstone Gray

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

parent 389dce86
...@@ -255,10 +255,19 @@ ...@@ -255,10 +255,19 @@
} }
} }
.deploy-board-icon i { .deploy-board-icon {
cursor: pointer; display: none;
color: $layout-link-gray;
padding-right: 10px; @media (min-width: $screen-md-min) {
float: left;
display: block;
}
i {
cursor: pointer;
color: $layout-link-gray;
padding-right: 10px;
}
} }
.deploy-board { .deploy-board {
...@@ -266,6 +275,10 @@ ...@@ -266,6 +275,10 @@
background-color: $gray-light; background-color: $gray-light;
min-height: 20px; min-height: 20px;
@media (max-width: $screen-sm-max) {
display: none;
}
.fa-spinner { .fa-spinner {
margin: 0 auto; margin: 0 auto;
width: 20px; width: 20px;
......
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