index.less 744 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .box {
  2. display: flex;
  3. justify-content: space-between;
  4. padding: 20rpx 0rpx;
  5. margin: 0 30rpx;
  6. align-items: center;
  7. border-bottom: 1rpx solid #e6e6e6;
  8. .box-title {
  9. display: flex;
  10. .icon-img {
  11. margin-right: 10rpx;
  12. }
  13. .functionname {
  14. font-weight: 600;
  15. }
  16. }
  17. }
  18. .myfunction-sudoku {
  19. display: grid;
  20. grid-template-columns: 25% 25% 25% 25%;
  21. .sudoku-box {
  22. margin-top: 40rpx;
  23. display: grid;
  24. justify-items: content;
  25. .sudoku-img {
  26. width: 70rpx;
  27. height: 70rpx;
  28. margin: 0 auto;
  29. }
  30. .sudoku-name {
  31. font-size: 28rpx;
  32. margin: 0 auto;
  33. }
  34. }
  35. }