diff options
author | Oscar Najera <hi@oscarnajera.com> | 2023-10-15 04:59:18 +0200 |
---|---|---|
committer | Oscar Najera <hi@oscarnajera.com> | 2023-10-15 06:16:55 +0200 |
commit | 3b3dee43f08916fa3f13b1b3895fbaf906c3298b (patch) | |
tree | 7355bbbd87c0863568ec49532ebc7eb7f54f5b26 /layouts/partials | |
parent | 65695c7fa2684d7221a5069cbc27e7f0cfffd892 (diff) | |
download | hugo-minimalist-theme-3b3dee43f08916fa3f13b1b3895fbaf906c3298b.tar.gz hugo-minimalist-theme-3b3dee43f08916fa3f13b1b3895fbaf906c3298b.tar.bz2 hugo-minimalist-theme-3b3dee43f08916fa3f13b1b3895fbaf906c3298b.zip |
author card reduce
Diffstat (limited to 'layouts/partials')
-rw-r--r-- | layouts/partials/author_card.html | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/layouts/partials/author_card.html b/layouts/partials/author_card.html index 23d97ae..b2f77c0 100644 --- a/layouts/partials/author_card.html +++ b/layouts/partials/author_card.html @@ -1,11 +1,11 @@ -<div class="mw7 center ph3 flex flex-column flex-row-ns"> - <div class="w-10-ns"> - <img src="{{ .Site.Author.avatar }}" class="br-100"> +<div class="mw7 center pa4 flex flex-column flex-row-ns bt b--black-10"> + <div class="w-10-ns tc"> + <img src="{{ .Site.Author.avatar }}" class="br-100 w3"> </div> <div class="w-90-ns ph3-ns"> - <h5 class="f3 mv1 berkshire-swash">{{ .Site.Author.name }}</h5> - <h6 class="f4 fw4 pa0 ma0">{{ .Site.Author.role }}</h6> - <p class="f5 lh-copy"> + <h5 class="f4 mv1 berkshire-swash">{{ .Site.Author.name }}</h5> + <h6 class="f5 fw3 pa0 ma0">{{ .Site.Author.role }}</h6> + <p class="f6 lh-copy"> {{ .Site.Author.bio }} </p> </div> |