Skip to content

Commit

Permalink
GH-321: Fix figure size and note about its resize
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar committed Aug 24, 2021
1 parent a7134e2 commit 66eae8f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion taccsite_cms/contrib/taccsite_callout/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class TaccsiteCallout(AbstractLink):

resize_figure_to_fit = models.BooleanField(
verbose_name=_('Resize any image to fit'),
help_text=_('Make image shorter or taller to match the height of text beside it.'),
help_text=_('Make image shorter or taller to match the height of text beside it (as it would be without the image).'),
blank=False,
default=False
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ Styleguide Components.Callout
.c-callout {
display: grid;
grid-template-rows: auto 1fr;
grid-template-columns: auto 1fr;

padding: 20px;
}
Expand Down

0 comments on commit 66eae8f

Please sign in to comment.