diff options
author | Malf Furious <m@lfurio.us> | 2019-03-20 20:05:52 -0400 |
---|---|---|
committer | Malf Furious <m@lfurio.us> | 2019-03-20 20:05:52 -0400 |
commit | 7d90a9ac3bd5d0605ab398d2b564a83cc946a56f (patch) | |
tree | 6abec678bd5a5a1092c195796831f4b49ab2b6d4 | |
parent | d2e4330557e02af6dc4ff133d2586730e94d6959 (diff) | |
download | scrott-7d90a9ac3bd5d0605ab398d2b564a83cc946a56f.tar.gz scrott-7d90a9ac3bd5d0605ab398d2b564a83cc946a56f.zip |
Tweak setting modal image columns
The target display size of these columns is changed to 'xs' so they
don't wrap when viewed on smaller displays.
Signed-off-by: Malf Furious <m@lfurio.us>
-rw-r--r-- | app/view/settings.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/view/settings.php b/app/view/settings.php index 21b75ba..a5dc9d8 100644 --- a/app/view/settings.php +++ b/app/view/settings.php @@ -78,7 +78,7 @@ require_once "class/user.class.php"; <?php } ?> <?php function image(\obj $obj, string $type, string $label) : void { ?> - <div class="col-md-6 text-center"> + <div class="col-xs-6 text-center"> <?php if ($type == "head") { ?> <?=\datalsts\objHeadCircle($obj, 100)?> <?php $d = (!$obj->hasHeadImg() ? "disabled" : ""); ?> |