Skip to content

Commit 16166df

Browse files
committed
fix: restore ASCII art with ultra-small font size (7px) to prevent overflow
- Change font-size from 10px to 7px - Add overflow: hidden to prevent spill - Keep original ASCII art shape
1 parent 9be3dd2 commit 16166df

1 file changed

Lines changed: 11 additions & 8 deletions

File tree

docs/_layouts/default.html

Lines changed: 11 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -38,17 +38,15 @@
3838
-webkit-font-smoothing: subpixel-antialiased;
3939
}
4040

41-
/* Robot mascot styling - single line */
41+
/* Robot mascot styling - ultra compact */
4242
.robot-mascot {
4343
font-family: 'Courier New', monospace;
44-
font-size: 12px;
45-
line-height: 1;
44+
font-size: 7px;
45+
line-height: 1.1;
46+
white-space: pre;
4647
margin: 10px 0;
4748
color: #666;
48-
background: #f5f5f5;
49-
padding: 8px 12px;
50-
border-radius: 4px;
51-
display: inline-block;
49+
overflow: hidden;
5250
}
5351

5452
/* View on GitHub button */
@@ -247,7 +245,12 @@
247245
<h1>{{ site.title | default: "null-e" }}</h1>
248246
<p>{{ site.description | default: "The friendly disk cleanup robot for developers" }}</p>
249247

250-
<div class="robot-mascot">🤖 null-e - The friendly disk cleanup robot</div>
248+
<pre class="robot-mascot"> .---.
249+
|o o|
250+
| ^ |
251+
| === |
252+
`-----'
253+
/| |\</pre>
251254

252255
<p>
253256
<a href="https://github.com/us/null-e" class="github-button">View on GitHub</a>

0 commit comments

Comments
 (0)