Skip to content

Commit 074a929

Browse files
committed
Fix icon size in production compiled assets
1 parent 7d509e8 commit 074a929

File tree

2 files changed

+4
-8
lines changed

2 files changed

+4
-8
lines changed

resources/assets/scripts/components/core/Navigation.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,22 @@
99
<ul>
1010
<li>
1111
<router-link :to="{ name: 'dashboard' }">
12-
<server-icon aria-label="Server dashboard"/>
12+
<server-icon aria-label="Server dashboard" class="h-4"/>
1313
</router-link>
1414
</li>
1515
<li>
1616
<router-link :to="{ name: 'account' }">
17-
<user-icon aria-label="Profile management"/>
17+
<user-icon aria-label="Profile management" class="h-4"/>
1818
</router-link>
1919
</li>
2020
<li>
2121
<a :href="this.route('admin.index')">
22-
<settings-icon aria-label="Administrative controls"/>
22+
<settings-icon aria-label="Administrative controls" class="h-4"/>
2323
</a>
2424
</li>
2525
<li>
2626
<a :href="this.route('auth.logout')" v-on:click.prevent="doLogout">
27-
<log-out-icon aria-label="Sign out"/>
27+
<log-out-icon aria-label="Sign out" class="h-4"/>
2828
</a>
2929
</li>
3030
</ul>

resources/assets/styles/components/navigation.css

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@
2727
&:hover {
2828
@apply .bg-blue-dark;
2929
}
30-
31-
& .feather {
32-
@apply .h-4;
33-
}
3430
}
3531
}
3632
}

0 commit comments

Comments
 (0)