diff options
author | Mario Vavti <mario@mariovavti.com> | 2021-12-03 15:10:59 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2021-12-03 15:10:59 +0100 |
commit | fd433b3eb6d18e64b9a0ff4d3f09d762dafe7078 (patch) | |
tree | 35aa318006a441c5be529e71158505dd5e0bf238 /view/theme/redbasic/php | |
parent | 45fd462f804f7f293ebfb2be706522f511b34818 (diff) | |
download | volse-hubzilla-fd433b3eb6d18e64b9a0ff4d3f09d762dafe7078.tar.gz volse-hubzilla-fd433b3eb6d18e64b9a0ff4d3f09d762dafe7078.tar.bz2 volse-hubzilla-fd433b3eb6d18e64b9a0ff4d3f09d762dafe7078.zip |
main_width in rem
Diffstat (limited to 'view/theme/redbasic/php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index a405abea0..9b8ac455a 100644 --- a/view/theme/redbasic/php/style.php +++ b/view/theme/redbasic/php/style.php @@ -101,7 +101,7 @@ if (! $radius) if (! $shadow) $shadow = '0'; if (! $converse_width) - $converse_width = '1270'; //unit: rem + $converse_width = '52'; //unit: rem if(! $top_photo) $top_photo = '2.3rem'; if(! $reply_photo) @@ -126,7 +126,7 @@ if(file_exists('view/theme/redbasic/css/style.css')) { $main_width = $left_aside_width + $right_aside_width + intval($converse_width); // prevent main_width smaller than 768px - $main_width = (($main_width < 768) ? 768 : $main_width); + $main_width = (($main_width < 30) ? 30 : $main_width); $options = array ( '$nav_bg' => $nav_bg, |