Open jcubic opened 4 years ago
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
--size
This is important for big screens, default font is way to small for big screens
Alternative is:
@media (min-width: 800px) { :root { --size: 1.2; } } @media (min-width: 1200px) { :root { --size: 1.5; } }
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=0110This is important for big screens, default font is way to small for big screens