We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 94564f5 commit 08960cdCopy full SHA for 08960cd
1 file changed
Source Code/style.css
@@ -751,11 +751,21 @@ button:active {
751
752
.header {
753
height: 60px;
754
+ padding: 0 10px;
755
+ /* Add some padding */
756
}
757
758
.header h1 {
- font-size: 28px;
- /* Significantly reduced for mobile */
759
+ font-size: 20px;
760
+ /* Further reduced from 28px to prevent wrapping */
761
+ letter-spacing: 1px;
762
+ /* Reduce spacing */
763
+ width: 100%;
764
+ text-align: center;
765
+ white-space: nowrap;
766
+ /* Force single line if possible */
767
+ overflow: hidden;
768
+ text-overflow: ellipsis;
769
770
771
.countdown {
0 commit comments