Skip to content

Commit

Permalink
Merge branch 'main' into feat/add-instagram-to-social-media
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleyboar authored Jan 11, 2024
2 parents 497ea53 + b37f389 commit a83c93d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/tup-cms/src/apps/portal/apps.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ def callback(form, cleaned_data, **kwargs):
logger.debug(f"received submission from {form.name}")
if form.name == 'rt-ticket-form':
submit_ticket(cleaned_data)
else:
elif hasattr(cleaned_data, "email"):
send_confirmation_email(form.name, cleaned_data)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,9 +102,6 @@

/* Elements: Link */

.c-feed-list > a:last-child {
font-weight: var(--bold);
}
.c-feed-list > a:last-child {
padding-top: 15px;

Expand All @@ -114,6 +111,9 @@
overflow: hidden;
white-space: nowrap;
/* max-width: 100%; /* SEE: https://stackoverflow.com/a/44521595 */

font-weight: var(--bold);
font-size: var(--global-font-size--medium)
}
.o-section--style-dark .c-feed-list > a:last-child {
color: var(--global-color-primary--xx-light);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ svg {
display: inline-flex;
align-items: center;
justify-content: center; /* horz align when image narrower than grid cell */
min-height: 0;
}

/* For independent logo sizes */
Expand Down

0 comments on commit a83c93d

Please sign in to comment.