perHour.less 452 B

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