mirror of https://github.com/tildeclub/site.git
Merge pull request #66 from litemotiv/fix_layout
Restore 2-column layout for 768px and higher resolution
This commit is contained in:
commit
0450221613
|
@ -188,7 +188,14 @@ blockquote {
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Mobile */
|
@media (min-width: 768px) {
|
||||||
|
.row {
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: nowrap;
|
||||||
|
flex-direction: row-reverse;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
td {
|
td {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in New Issue