Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

VACMS-17436: Update links for manage your health care section #2174

Merged
merged 6 commits into from
Jul 12, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/site/assets/sass/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,18 @@
word-wrap: break-word;
}

.health-online-desktop-link {
@media (max-width: 768px) {
chriskim2311 marked this conversation as resolved.
Show resolved Hide resolved
display: none !important;
}
}

.health-online-mobile-link {
@media (min-width: 768px) {
display: none !important;
}
}

// START: Styles for mobile app promo banner
#alert-with-additional-info {

Expand Down
37 changes: 35 additions & 2 deletions src/site/layouts/health_care_region_page.drupal.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@
{% if fieldAdministration.entity.entityId != '1039' %}
<section>
{% if fieldAdministration.entity.entityId == '1040' %}
<h3>Manage your VA health online</h3>
<h2>Manage your VA health online</h2>
{% else %}
<h3>Manage your health online</h3>
<h2>Manage your health online</h2>
{% endif %}
<div class="vads-u-display--flex medium-screen:vads-u-flex-direction--row vads-u-flex-direction--column">
<div class="vads-u-margin-right--0 medium-screen:vads-u-margin-right--3">
Expand Down Expand Up @@ -102,6 +102,17 @@
text="Schedule and manage health appointments"
></va-link>
</div>
<div class="vads-facility-hub-cta vads-u-display--flex vads-u-align-items--center health-online-desktop-link">
<va-icon
chriskim2311 marked this conversation as resolved.
Show resolved Hide resolved
class="vads-u-color--link-default vads-facility-hub-cta-circle vads-u-margin-right--1"
size="3"
icon="chat"
></va-icon>
<va-link
href="https://mobile.va.gov/app/va-health-chat"
text="Download VA Health Chat"
></va-link>
</div>
</div>
<div>
<div class="vads-facility-hub-cta vads-u-display--flex vads-u-align-items--center">
Expand Down Expand Up @@ -143,6 +154,28 @@
text="Order hearing aid batteries and accessories"
></va-link>
</div>
<div class="vads-facility-hub-cta vads-u-display--flex vads-u-align-items--center health-online-mobile-link">
<va-icon
chriskim2311 marked this conversation as resolved.
Show resolved Hide resolved
class="vads-u-color--link-default vads-facility-hub-cta-circle vads-u-margin-right--1"
size="3"
icon="chat"
></va-icon>
<va-link
href="https://mobile.va.gov/app/va-health-chat"
text="Download VA Health Chat"
></va-link>
</div>
<div class="vads-facility-hub-cta vads-u-display--flex vads-u-align-items--center">
<va-icon
chriskim2311 marked this conversation as resolved.
Show resolved Hide resolved
class="vads-u-color--link-default vads-facility-hub-cta-circle vads-u-margin-right--1"
size="3"
icon="phone"
></va-icon>
<va-link
href="https://www.va.gov/health/connect-to-va-care/index.asp"
text="Connect to VA care"
></va-link>
</div>
</div>
</div>
</section>
Expand Down
Loading