Merge pull request #4591 from devansh-webkul/issue-4589
Fixed compare icon which is missing in mobile view #4589
This commit is contained in:
commit
664108c083
File diff suppressed because one or more lines are too long
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"/js/velocity.js": "/js/velocity.js?id=a45dba1beb5c6f79193d",
|
||||
"/css/velocity-admin.css": "/css/velocity-admin.css?id=4322502d80a0e4a0affd",
|
||||
"/css/velocity.css": "/css/velocity.css?id=562e19f8c4e4916566d7"
|
||||
"/css/velocity.css": "/css/velocity.css?id=a0d4320e35797371f8f0"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -801,6 +801,10 @@
|
|||
content: "\e93e";
|
||||
}
|
||||
|
||||
&.compare::before {
|
||||
content: "\e93b";
|
||||
}
|
||||
|
||||
&.orders::before {
|
||||
content: "\e931";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -113,6 +113,15 @@
|
|||
</li>
|
||||
@endif
|
||||
|
||||
@if (core()->getConfigData('general.content.shop.compare_option'))
|
||||
<li>
|
||||
<a href="{{ route('velocity.customer.product.compare') }}" class="unset">
|
||||
<i class="icon compare text-down-3"></i>
|
||||
<span>{{ __('shop::app.customer.compare.text') }}</span>
|
||||
</a>
|
||||
</li>
|
||||
@endif
|
||||
|
||||
<li>
|
||||
<a href="{{ route('customer.orders.index') }}" class="unset">
|
||||
<i class="icon orders text-down-3"></i>
|
||||
|
|
|
|||
Loading…
Reference in New Issue