_element_plus.scss 506 B

12345678910111213141516171819202122232425262728
  1. /* 只需要覆盖你需要的变量 */
  2. @forward "element-plus/theme-chalk/src/common/var.scss" with (
  3. $colors: (
  4. 'white': #ffffff,
  5. 'black': #000000,
  6. ),
  7. $font-path: 'element-plus/theme-chalk/fonts',
  8. $sm: 1140px,
  9. $md: 1440px,
  10. $lg: 1680px,
  11. $xl: 1840px,
  12. );
  13. @import "element-plus/theme-chalk/src/index.scss";
  14. // ===== 下面写覆盖的样式
  15. .el-input {
  16. > .el-input__inner {
  17. border-radius: 2px;
  18. }
  19. }
  20. .el-card {
  21. .el-card__header {
  22. border-bottom: 1px solid #e8eaec;
  23. }
  24. }