consult.page.scss 322 B

123456789
  1. // 定义文字颜色
  2. $text-color: #333; // 设置为您想要的颜色值
  3. // 定义文字大小
  4. $text-font-size: 16px; // 设置为您想要的字体大小
  5. .customer-message p, .designer-message p {
  6. color: $text-color; // 应用定义的文字颜色
  7. font-size: $text-font-size; // 应用定义的文字大小
  8. }