-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Agency link focus rings are now rounded (#2600)
- Loading branch information
Showing
1 changed file
with
8 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
<p class="h4 mt-4 d-block">{{ agency_name | default:agency.long_name }}</p> | ||
<a class="d-table mt-1 fs-base ls-base" href="tel:{{ phone | default:agency.phone }}">{{ phone | default:agency.phone }}</a> | ||
<a class="d-table mt-1 fs-base ls-base" href="{{ info_url | default:agency.info_url }}" target="_blank" rel="noopener noreferrer">{{ info_url | default:agency.info_url }}</a> | ||
<ul class="ps-0 d-flex flex-column gap-1 mt-1"> | ||
<li class="list-unstyled"> | ||
<a href="tel:{{ phone | default:agency.phone }}">{{ phone | default:agency.phone }}</a> | ||
</li> | ||
<li class="list-unstyled"> | ||
<a href="{{ info_url | default:agency.info_url }}" target="_blank" rel="noopener noreferrer">{{ info_url | default:agency.info_url }}</a> | ||
</li> | ||
</ul> |