jquery.terminal icon indicating copy to clipboard operation
jquery.terminal copied to clipboard

Document responsive font size

Open jcubic opened this issue 4 years ago • 1 comments

I have idea for a new feature for jQuery Terminal

In Figlet Pipe demo I've added responsive font size with media queries and --size. It should be documented. https://codepen.io/jcubic/pen/vYLvvXx?editors=0110

This is important for big screens, default font is way to small for big screens

jcubic avatar Oct 21 '20 14:10 jcubic

Alternative is:

@media (min-width: 800px) {
    :root {
        --size: 1.2;
    }
}
@media (min-width: 1200px) {
    :root {
        --size: 1.5;
    }
}

jcubic avatar Nov 25 '20 09:11 jcubic