Commit cf1e9ebd authored by Ben Hayward's avatar Ben Hayward

Fixed size and added flex wrap to download buttons #1356

parent 0cdc6150
No related merge requests found
Pipeline #69049541 canceled with stages
......@@ -74,26 +74,38 @@ m-modal-signup, m-modal-signup-on-action{
margin-left: $minds-padding;
}
@media screen and (max-width: $min-tablet) {
& {
padding: 16px 0;
}
}
// @media screen and (max-width: $min-tablet) {
// & {
// padding: 16px 0;
// }
// }
}
.m-modal-signup-apps{
display:flex;
flex-flow:row nowrap;
align-items:center;
padding:0 40px;
width: 100%;
box-sizing: border-box;
padding: 0 40px;
@media screen and (max-width: $max-mobile) {
display: flex;
flex-wrap: wrap;
justify-content: center;
padding: 0 30px;
}
a{
flex:1;
@media screen and (min-width: $max-mobile) {
flex:1;
}
margin:$minds-margin/2;
min-width: 40%;
img{
width:100%;
max-width: 130px;
min-width: 130px;
}
}
}
......
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