mrmierzejewski / hugo-theme-console

A minimal, responsive and light theme for Hugo inspired by Linux console.
MIT License
393 stars 118 forks source link

Mobile view cuts off title #2

Closed hattorihan closed 4 years ago

hattorihan commented 4 years ago

If you check the page with mobile, webpage title is cut off and slighlty out of place.

Viewable with this or with any browser on android at least: https://search.google.com/test/mobile-friendly

Example with https://mrmierzejewski.com/

This repo's README.md has screenshot of mobile view with title being :~# and actual title on mobile is mr:~#

mrmierzejewski commented 4 years ago

This is a feature not a bug :)

You can disable cutting off the title by removing the following lines (below) from static/hugo-theme-console/css/console.css.

 .site-name {
        width: 2ch;
        overflow: hidden;
        display: inline-block;
    }
mrmierzejewski commented 4 years ago

But it is a good idea to add cutting off the title for mobile view as a parameter.

I will add this.

hattorihan commented 4 years ago

Awesome. Appreciated!

mrmierzejewski commented 4 years ago

I added titleCutting parameter.