1
0
mirror of https://github.com/ipdb/website.git synced 2025-02-14 21:10:26 +01:00

mobile fixes

This commit is contained in:
Matthias Kretschmann 2017-09-05 12:07:10 +02:00
parent 688a878124
commit 41a373b449
Signed by: m
GPG Key ID: 606EEEF3C479A91F
2 changed files with 18 additions and 14 deletions

View File

@ -13,7 +13,6 @@
line-height: 1; line-height: 1;
text-transform: uppercase; text-transform: uppercase;
text-align: center; text-align: center;
white-space: nowrap;
vertical-align: middle; vertical-align: middle;
cursor: pointer; cursor: pointer;
user-select: none; user-select: none;

View File

@ -194,23 +194,28 @@
} }
.getstarted { .getstarted {
display: flex;
flex-wrap: wrap;
align-items: flex-start;
height: 100%;
color: $text-color; color: $text-color;
counter-increment: getstarted-steps; counter-increment: getstarted-steps;
padding-left: $spacer * 2; margin-top: $spacer * 2;
padding-right: $spacer * 2; display: block;
.grid__col:first-child & { @media ($screen-sm) {
border-right: .1rem solid darken($brand-05, 8%); display: flex;
padding-left: 0; flex-wrap: wrap;
} height: 100%;
margin-top: 0;
padding-left: $spacer * 2;
padding-right: $spacer * 2;
.grid__col:last-child & { .grid__col:first-child & {
border-left: .1rem solid darken($brand-05, 8%); border-right: .1rem solid darken($brand-05, 8%);
padding-right: 0; padding-left: 0;
}
.grid__col:last-child & {
border-left: .1rem solid darken($brand-05, 8%);
padding-right: 0;
}
} }
} }