12345678910111213141516171819202122 |
- .title {
- font-size: 24px;
- font-weight: 800;
- text-align: center;
- color: hotpink
- }
- .box {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- }
- .todo-item {
- display: flex;
- align-items: center;
- }
|