mirror of
https://github.com/redlib-org/redlib.git
synced 2025-04-04 21:47:40 +03:00
Make mobile layout post width fix only apply in mobile mode to prevent bug
This commit is contained in:
parent
e987f1dc4f
commit
4e7c401230
1 changed files with 4 additions and 0 deletions
|
@ -359,8 +359,12 @@ main {
|
||||||
#column_one {
|
#column_one {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
|
max-width: 750px;
|
||||||
overflow: inherit;
|
overflow: inherit;
|
||||||
}
|
}
|
||||||
|
@media screen and (max-width: 800px) {
|
||||||
|
#column_one { max-width: unset; }
|
||||||
|
}
|
||||||
|
|
||||||
/* Body footer. */
|
/* Body footer. */
|
||||||
body > footer {
|
body > footer {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue