index.wxss 893 B

12345678910111213141516171819202122232425262728293031323334
  1. .ant-checkbox-group-horizontal .ant-checkbox-group-body {
  2. display: flex;
  3. flex-wrap: wrap;
  4. justify-content: flex-start;
  5. }
  6. .ant-checkbox-group-horizontal .ant-checkbox-group-body .ant-list-item-line {
  7. padding-right: 0;
  8. }
  9. .ant-checkbox-group-horizontal .ant-checkbox-group-body .ant-checkbox-item {
  10. flex-flow: 0;
  11. }
  12. .ant-checkbox-group-horizontal .ant-checkbox-group-body .ant-list-item-line::after {
  13. display: none;
  14. }
  15. .ant-checkbox-group-header:empty,
  16. .ant-checkbox-group-footer:empty {
  17. display: none;
  18. }
  19. .ant-checkbox-group-header,
  20. .ant-checkbox-group-footer {
  21. display: flex;
  22. align-items: center;
  23. padding: 8px 12px;
  24. line-height: 1.4;
  25. font-size: 15px;
  26. color: #999999;
  27. }
  28. .ant-checkbox-group-body {
  29. position: relative;
  30. overflow: hidden;
  31. }
  32. .ant-checkbox-group-body .ant-checkbox-item-content .ant-checkbox-group-item-label-default:not(:nth-child(1)) {
  33. display: none;
  34. }