aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment-add.component.scss
blob: e586880fce11b30debc39d56b74f1a4d9aa603c0 (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
@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);
    }
  }
}

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

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