如何移动垫扩展指示?

Joe*_*len 4 material-design angular

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

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

在此输入图像描述

谢谢 :)

Sha*_*Orm 10

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

.mat-expansion-panel-header {
  flex-direction: row-reverse;

  .mat-content {
    padding-left: 12px;
  }
}
Run Code Online (Sandbox Code Playgroud)