layout.scss 426 B

12345678910111213141516171819202122232425262728
  1. .demo-layout {
  2. .el-row {
  3. margin-bottom: 20px;
  4. &:last-child {
  5. margin-bottom: 0;
  6. }
  7. }
  8. .el-col {
  9. border-radius: 4px;
  10. }
  11. .bg-purple-dark {
  12. background: #99a9bf;
  13. }
  14. .bg-purple {
  15. background: #d3dce6;
  16. }
  17. .bg-purple-light {
  18. background: #e5e9f2;
  19. }
  20. .grid-content {
  21. border-radius: 4px;
  22. min-height: 36px;
  23. }
  24. .row-bg {
  25. padding: 10px 0;
  26. background-color: #f9fafc;
  27. }
  28. }