diff --git a/_layouts/about.html b/_layouts/about.html index d32317e..6d9957c 100644 --- a/_layouts/about.html +++ b/_layouts/about.html @@ -14,11 +14,13 @@ layout: default {% if page.profile -%}
{%- if page.profile.image %} +
{%- assign profile_image_path = page.profile.image | prepend: 'assets/img/' -%} {% include figure.html path=profile_image_path class="img-fluid z-dept-1 rounded" alt=page.profile.image -%} +
{% endif -%} {%- if page.profile.address %}
diff --git a/_sass/_base.scss b/_sass/_base.scss index 9d060d7..970e4d5 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -88,6 +88,12 @@ boldtext { } } +@media (max-width: 600px) { + .prof-image { + display: none; + } +} + .post-description { margin-bottom: 1rem; font-size: 0.9rem;