Skip to content

Commit 3d74253

Browse files
committed
🎨 替换掉 &nbsp 控制间距 #848
1 parent 80d88b0 commit 3d74253

File tree

4 files changed

+18
-8
lines changed

4 files changed

+18
-8
lines changed

layout/_partials/header/navigation.ejs

+7-6
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<a class="nav-link dropdown-toggle" target="_self" href="javascript:;" role="button"
2525
data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2626
<%- each.icon ? '<i class="' + each.icon + '"></i>' : '' %>
27-
<%- text %>
27+
<span><%- text %></span>
2828
</a>
2929
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
3030
<% for(const subEach of each.submenu || []) { %>
@@ -35,7 +35,7 @@
3535
} %>
3636
<a class="dropdown-item" href="<%= url_for(subEach.link) %>">
3737
<%- subEach.icon ? '<i class="' + subEach.icon + '"></i>' : '' %>
38-
<%- subText %>
38+
<span><%- subText %></span>
3939
</a>
4040
<% } %>
4141
</div>
@@ -44,23 +44,24 @@
4444
<li class="nav-item">
4545
<a class="nav-link" href="<%= url_for(each.link) %>">
4646
<%- each.icon ? '<i class="' + each.icon + '"></i>' : '' %>
47-
<%- text %>
47+
<span><%- text %></span>
4848
</a>
4949
</li>
5050
<% } %>
5151
<% } %>
5252
<% if(theme.search.enable) { %>
5353
<li class="nav-item" id="search-btn">
5454
<a class="nav-link" target="_self" href="javascript:;" data-toggle="modal" data-target="#modalSearch" aria-label="Search">
55-
&nbsp;<i class="iconfont icon-search"></i>&nbsp;
55+
<i class="iconfont icon-search"></i>
5656
</a>
5757
</li>
5858
<% import_js(theme.static_prefix.internal_js, 'local-search.js') %>
5959
<% } %>
6060
<% if(theme.dark_mode && theme.dark_mode.enable) { %>
6161
<li class="nav-item" id="color-toggle-btn">
62-
<a class="nav-link" target="_self" href="javascript:;" aria-label="Color Toggle">&nbsp;<i
63-
class="iconfont icon-dark" id="color-toggle-icon"></i>&nbsp;</a>
62+
<a class="nav-link" target="_self" href="javascript:;" aria-label="Color Toggle">
63+
<i class="iconfont icon-dark" id="color-toggle-icon"></i>
64+
</a>
6465
</li>
6566
<% } %>
6667
</ul>

layout/_partials/post/toc.ejs

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
<div id="toc">
2-
<p class="toc-header"><i class="iconfont icon-list"></i>&nbsp;<%- __('post.toc') %></p>
2+
<p class="toc-header">
3+
<i class="iconfont icon-list"></i>
4+
<span><%- __('post.toc') %></span>
5+
</p>
36
<div class="toc-body" id="toc-body"></div>
47
</div>
58

source/css/_pages/_base/_widget/header.styl

+6
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
i
2626
font-size 0.875rem
2727

28+
i:only-child
29+
margin 0 .2rem
30+
2831
.navbar-toggler
2932
border-width 0
3033
outline 0
@@ -155,6 +158,9 @@
155158
width 80%
156159
overflow-wrap break-word
157160

161+
.typed-cursor
162+
margin 0 .2rem
163+
158164
@media (max-width: 767px)
159165
#subtitle, .typed-cursor
160166
font-size 1.5rem

source/js/plugins.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Fluid.plugins = {
1414
var typed = new window.Typed('#subtitle', {
1515
strings: [
1616
' ',
17-
text + '&nbsp;'
17+
text
1818
],
1919
cursorChar: CONFIG.typing.cursorChar,
2020
typeSpeed : CONFIG.typing.typeSpeed,

0 commit comments

Comments
 (0)