Commit e786ba98 authored by Phil Hughes's avatar Phil Hughes Committed by Fatih Acet

Mobile sizes

parent 7d0feab3
...@@ -373,6 +373,7 @@ ...@@ -373,6 +373,7 @@
flex-direction: column; flex-direction: column;
width: 90vw; width: 90vw;
height: 85vh; height: 85vh;
min-height: 500px;
margin-left: auto; margin-left: auto;
margin-right: auto; margin-right: auto;
padding: 25px 15px 0; padding: 25px 15px 0;
...@@ -431,11 +432,20 @@ ...@@ -431,11 +432,20 @@
padding-top: 3px; padding-top: 3px;
.card-parent { .card-parent {
width: (100% / 3); width: 100%;
padding: 0 $gl-vert-padding ($gl-vert-padding * 2); padding: 0 $gl-vert-padding ($gl-vert-padding * 2);
@media (min-width: $screen-sm-min) {
width: 50%;
}
@media (min-width: $screen-md-min) {
width: (100% / 3);
}
} }
.card { .card {
border: 1px solid $border-gray-dark;
cursor: pointer; cursor: pointer;
} }
} }
......
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