quality.less 495 B

1234567891011121314151617181920212223242526272829303132
  1. .plg-quality {
  2. @p-30: 30px;
  3. @mb: 5px;
  4. width: 100%;
  5. height: 50%;
  6. // background-color: red;
  7. margin-bottom: 0;
  8. margin-bottom: @mb;
  9. &:first-child {
  10. height: calc(50% - @mb);
  11. }
  12. &:last-child {
  13. margin-bottom: @mb;
  14. }
  15. .plg-elem-quote {
  16. height: @p-30;
  17. line-height: @p-30;
  18. padding-top: 0;
  19. padding-bottom: 0;
  20. padding-left: 10px;
  21. margin-bottom: 0;
  22. }
  23. .layui-card-body {
  24. width: 100%;
  25. height: calc(100% - 30px);
  26. overflow: hidden;
  27. }
  28. }