diff options
author | Mario <mario@mariovavti.com> | 2021-11-23 09:17:04 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2021-11-23 09:17:04 +0000 |
commit | 06e214e5675769318a40abc9850bf8d5c85a7ee3 (patch) | |
tree | a24462b427835e55fb2f167c69fa1fc0991bb92b /view/theme/redbasic/php | |
parent | 18f8cafee0cc127e97d40aa70e45fd08d91c2dfe (diff) | |
download | volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.tar.gz volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.tar.bz2 volse-hubzilla-06e214e5675769318a40abc9850bf8d5c85a7ee3.zip |
more work on responsive aside
Diffstat (limited to 'view/theme/redbasic/php')
-rw-r--r-- | view/theme/redbasic/php/style.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/view/theme/redbasic/php/style.php b/view/theme/redbasic/php/style.php index 3ea94f9aa..6ba0d569e 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 = '790'; + $converse_width = '1250'; //unit: rem if(! $top_photo) $top_photo = '2.3rem'; if(! $reply_photo) @@ -120,8 +120,8 @@ if(file_exists('view/theme/redbasic/css/style.css')) { $x .= $schemecss; } - $left_aside_width = 288; - $right_aside_width = 288; + $left_aside_width = 21; //unit: rem + $right_aside_width = 21; //unit: rem $main_width = $left_aside_width + $right_aside_width + intval($converse_width); |