Responsive header icons

This commit is contained in:
James Barnsley
2017-02-21 21:56:40 +13:00
parent 141bc95feb
commit a964536618
2 changed files with 30 additions and 0 deletions

View File

@ -89,6 +89,7 @@ const PusherMiddleware = (function(){
type: 'PUSHER_DISCONNECTED'
})
// attempt to reconnect ever 5 seconds
setTimeout(() => {
store.dispatch(pusherActions.connect())
}, 5000);

View File

@ -45,5 +45,34 @@ main {
}
}
}
@include responsive( $bp_medium ){
.dropdown-field {
.label {
padding-left: 16px;
padding-right: 16px;
.text {
display: none;
}
.fa {
line-height: 24px;
}
}
}
.actions {
button {
font-size: 1px;
color: transparent;
vertical-align: top;
.fa {
font-size: 14px;
color: #000000;
vertical-align: middle;
}
}
}
}
}
}