首页 文章

如何移动垫扩展指示?

提问于
浏览
0

是否可以移动垫子扩展指示器(角度,材料设计)以在 Headers 之前设置它?

没有关于材料文档的信息https://material.angular.io/components/expansion/overview

enter image description here

谢谢 :)

1 回答

  • 6

    您始终可以覆盖默认样式 .

    .mat-expansion-panel-header {
      flex-direction: row-reverse;
    
      .mat-content {
        padding-left: 12px;
      }
    }
    

相关问题