aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment-add.component.scss
blob: a55e743fbf3c43ba579a19562ed1c330c7ecf737 (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
@import '_variables';
@import '_mixins';

form {
  margin-bottom: 30px;
}

.avatar-and-textarea {
  display: flex;
  margin-bottom: 10px;

  img {
    @include avatar(36px);

    vertical-align: top;
    margin-right: 20px;
  }

  .form-group {
    flex-grow: 1;
    margin: 0;

    textarea {
      @include peertube-textarea(100%, 60px);

      &:focus::placeholder {
        opacity: 0;
      }
    }
  }
}

.submit-comment {
  display: flex;
  justify-content: flex-end;

  button {
    @include peertube-button;
    @include orange-button
  }
}