Skip to content

Commit

Permalink
Fix width
Browse files Browse the repository at this point in the history
  • Loading branch information
BernatBC committed Feb 3, 2024
1 parent e6e2ace commit ccdc9dd
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
5 changes: 3 additions & 2 deletions layouts/partials/sections/education-alt.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,9 @@ <h1 class="text-center" style="display: none">
{{ if ne $logoImage.MediaType.SubType "svg" }}
{{ $logoImage = $logoImage.Fit "300x300" }}
{{ end }}

<img class="company-logo" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
<div class="logo-holder">
<img class="company-logo" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
</div>
{{ end }}

<div class="row">
Expand Down
4 changes: 3 additions & 1 deletion layouts/partials/sections/education.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,9 @@ <h1 class="text-center" style="display: none">
{{ $logoImage = $logoImage.Fit "300x300" }}
{{ end }}

<img class="company-logo" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
<div class="logo-holder">
<img class="company-logo" src="{{ $logoImage.RelPermalink }}" alt="{{ .name }}" />
</div>
{{ end }}

<div class="row">
Expand Down

0 comments on commit ccdc9dd

Please sign in to comment.