aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/react-small-apps/apps/todos/src/views/Todo/Todo.scss
blob: 67baa2d773bfb4f34159c1d92c19c3d7c70f6c8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
.todo {
  border: 1px solid #000;
  margin-top: 2rem;
  padding: 1rem;

  & &__title {
    font-size: 1.2rem;
  }

  & &__body {
    margin-top: 1rem;
    min-height: 10rem;
  }
}

.todo-form {
  &__field {
    border: none;
    padding: 0;
    margin: 0;

    &--textarea {
      resize: none;
      line-height: inherit;
    }

    &:focus {
      outline: none;
    }
  }
}