1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-22 22:59:43 +02:00

Tweaked flexbox max-width for crazy long content

This commit is contained in:
Harvey Kandola 2018-06-09 19:13:15 +01:00
parent d88adef5b5
commit 0da8ae9e4a
2 changed files with 7 additions and 0 deletions

View file

@ -50,6 +50,7 @@ footer {
flex: 0 1 700px;
padding: 0 2rem;
margin: 0;
max-width: 700px;
}
}
@ -67,6 +68,7 @@ footer {
flex: 0 1 1000px;
margin: 0;
padding: 0 2rem 0 3rem;
max-width: 1000px;
}
}
@ -84,6 +86,7 @@ footer {
flex: 0 1 1000px;
margin: 0;
padding: 0 0 0 3rem;
max-width: 1000px;
}
}
@ -101,6 +104,7 @@ footer {
flex: 0 1 1200px;
margin: 0;
padding: 0 2rem 0 3rem;
max-width: 1200px;
}
}
@ -118,6 +122,7 @@ footer {
flex: 0 1 1300px;
margin: 0;
padding: 0 2rem 0 4rem;
max-width: 1300px;
}
}

View file

@ -129,5 +129,7 @@
margin: 0 !important;
display: block !important;
flex: none !important;
width: auto !important;
max-width: auto !important;
}
}