Skip to content

Commit

Permalink
Ensure that border-radius (rounded edges) is not applied to partner l…
Browse files Browse the repository at this point in the history
…ogos. Those should not be modified.
  • Loading branch information
VWJF committed Dec 19, 2024
1 parent 73e630f commit 670aac3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions layouts/partials/clients.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ <h2>{{ .Site.Params.clients.title | markdownify }}</h2>
<div class="col col-12 col-sm-6 col-md-4 col-lg-3 col-xl-2 col-xxl-1 align-middle partner-logo" title="{{ .name }}" data-slide-index="{{ $.Scratch.Get "index" }}">
{{ if .url }}
<a href="{{ .url | relURL }}" target="_blank">
<img src="{{ .image }}" alt="{{ .name }}" class="img-responsive" />
<img src="{{ .image }}" alt="{{ .name }}" class="img-responsive" style="border-radius: 0px;"/>
</a>
{{ else }}
<img src="{{ .image }}" alt="{{ .name }}" class="img-responsive" />
<img src="{{ .image }}" alt="{{ .name }}" class="img-responsive" style="border-radius: 0px;" />
{{ end }}
</div>
{{ $.Scratch.Set "index" (add ($.Scratch.Get "index") 1) }}
Expand Down

0 comments on commit 670aac3

Please sign in to comment.