我是靠谱客的博主 玩命香水,最近开发中收集的这篇文章主要介绍如何定制化SAP Spartacus的购物车图标,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SAP Spartacus默认的购物车图标如下图所示:

使用如下的css代码对其外观进行修改:

/* You can add global styles to this file, and also import other style files */
$skipComponentStyles: (cx-mini-cart);

@import "~@spartacus/styles/index";

@import "custom-styles";

cx-mini-cart {
  margin-right: unset;
  padding: 10px;
  position: relative;
  .count {
    position: absolute;
    border-radius: 50%;
    color: white;
    text-align: center;
    right: 0;
    top: 0;
  }
  .total {
    display: none;
  }
}

结果:

更多Jerry的原创文章,尽在:“汪子熙”:

最后

以上就是玩命香水为你收集整理的如何定制化SAP Spartacus的购物车图标的全部内容,希望文章能够帮你解决如何定制化SAP Spartacus的购物车图标所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部