mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 01:25:52 -05:00
Merge pull request #526 from mewtaylor/issue/conference-mobile-tweaks
Some additional mobile tweaks for conference
This commit is contained in:
commit
9f886a007f
3 changed files with 37 additions and 8 deletions
|
@ -42,12 +42,19 @@
|
|||
}
|
||||
|
||||
@media only screen and (max-width: $mobile - 1) {
|
||||
.inner {
|
||||
> ul {
|
||||
li {
|
||||
&.right {
|
||||
ul {
|
||||
flex-flow: row nowrap;
|
||||
.inner > ul {
|
||||
li {
|
||||
&.right {
|
||||
ul {
|
||||
flex-flow: row nowrap;
|
||||
|
||||
li {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
|
||||
a {
|
||||
font-size: .75rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -123,5 +123,12 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $mobile - 1) {
|
||||
#view {
|
||||
width: 100%;
|
||||
min-width: 100%;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -156,6 +156,22 @@
|
|||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $mobile - 1) {
|
||||
.flex-row {
|
||||
table {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (min-width: $mobile) and (max-width: $desktop - 1) {
|
||||
.flex-row {
|
||||
table {
|
||||
width: $cols6;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media only screen and (max-width: $desktop - 1) {
|
||||
.flex-row {
|
||||
flex-direction: column;
|
||||
|
@ -163,7 +179,6 @@
|
|||
|
||||
table {
|
||||
margin-top: 50px;
|
||||
width: $cols6;
|
||||
text-align: left;
|
||||
|
||||
th {
|
||||
|
|
Loading…
Reference in a new issue