avatar.scss 994 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. .demo-avatar {
  2. &.demo-basic {
  3. text-align: center;
  4. .demo-basic--circle, .demo-basic--square {
  5. display: flex;
  6. justify-content: space-between;
  7. align-items: center;
  8. .block {
  9. flex: 1;
  10. }
  11. .block:not(:last-child) {
  12. border-right: 1px solid rgba(224, 230, 237, 0.5);
  13. }
  14. }
  15. }
  16. .sub-title {
  17. margin-bottom: 10px;
  18. font-size: 14px;
  19. color: #8492a6;
  20. }
  21. .el-col:not(:last-child) {
  22. border-right: 1px solid rgba(224,230,237,.5);
  23. }
  24. .demo-type {
  25. display: flex;
  26. >div {
  27. flex: 1;
  28. text-align: center;
  29. }
  30. >div:not(:last-child) {
  31. border-right: 1px solid rgba(224,230,237,.5);
  32. }
  33. }
  34. .demo-fit {
  35. display: flex;
  36. text-align: center;
  37. justify-content: space-between;
  38. .block {
  39. flex: 1;
  40. display: flex;
  41. flex-direction: column;
  42. flex-grow: 0;
  43. }
  44. .title {
  45. margin-bottom: 10px;
  46. font-size: 14px;
  47. color: #8492a6;
  48. }
  49. }
  50. }