Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
<div class="row intro mb-4">
<h1 class="h1-heading col-12">{{product.title}}</h1>
<div class="col-12 d-flex flex-column flex-md-row justify-content-between">
<a id="product-company-url" class="product-price pni-product-intro-large mb-2 mb-md-0" href="{{product.product_url}}" target="_blank">{{product.company}} {% if product.product_type == "general" %}${% endif %}{{product.price}}</a>
<a id="product-company-url" class="company-external-link pni-product-intro-large mb-2 mb-md-0" href="{{product.product_url}}" target="_blank">{{product.company}}</a>
{% if product.uses_wifi or product.uses_bluetooth %}
<div>
{% if product.uses_wifi %}
Expand Down
5 changes: 5 additions & 0 deletions source/images/buyers-guide/external-link.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 13 additions & 0 deletions source/sass/buyers-guide/views/product.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,19 @@
}
}

.company-external-link {
display: inline-flex;
align-items: center;

&::after {
content: " ";
width: 1em;
height: 1em;
background: url(../_images/buyers-guide/external-link.svg) no-repeat;
margin-left: 0.5em;
}
}

.connectivity-requirement {
display: inline-flex;
align-items: center;
Expand Down