Skip to content

Commit 9be3dd2

Browse files
committed
fix: replace ASCII art with text to prevent overflow
- Remove multi-line ASCII art that was overflowing sidebar - Replace with single-line text badge - Update CSS for inline-block display
1 parent 8e657dc commit 9be3dd2

1 file changed

Lines changed: 9 additions & 13 deletions

File tree

docs/_layouts/default.html

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

41-
/* Robot mascot styling */
41+
/* Robot mascot styling - single line */
4242
.robot-mascot {
4343
font-family: 'Courier New', monospace;
44-
font-size: 10px;
45-
line-height: 1.3;
46-
white-space: pre;
47-
margin: 20px 0;
44+
font-size: 12px;
45+
line-height: 1;
46+
margin: 10px 0;
4847
color: #666;
49-
max-width: 100%;
50-
overflow-x: auto;
48+
background: #f5f5f5;
49+
padding: 8px 12px;
50+
border-radius: 4px;
51+
display: inline-block;
5152
}
5253

5354
/* View on GitHub button */
@@ -246,12 +247,7 @@
246247
<h1>{{ site.title | default: "null-e" }}</h1>
247248
<p>{{ site.description | default: "The friendly disk cleanup robot for developers" }}</p>
248249

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

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

0 commit comments

Comments
 (0)