diff options
| -rw-r--r-- | phpBB/styles/prosilver/theme/responsive.css | 9 | 
1 files changed, 8 insertions, 1 deletions
| diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index 6d74c5772e..d71fd142e6 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -557,9 +557,16 @@  	}  } +@media (min-width: 700px) { +	.postbody { width: 70%; } +} + +@media (min-width: 850px) { +	.postbody { width: 76%; } +} +  @media (max-width: 850px) {  	.postprofile { width: 28%; } -	.postbody { width: 70%; }  }  @media (min-width: 701px) and (max-width: 950px) { | 
