index.wxss 322 B

123456789101112131415161718192021
  1. .title {
  2. font-size: 24px;
  3. font-weight: 800;
  4. text-align: center;
  5. color: hotpink
  6. }
  7. .box {
  8. display: flex;
  9. flex-direction: column;
  10. justify-content: center;
  11. align-items: center;
  12. }
  13. .todo-item {
  14. display: flex;
  15. align-items: center;
  16. margin-top: 5px;
  17. padding-bottom: 5px;
  18. border-bottom: 1px solid #ccc;
  19. }