aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/videos/+video-watch/comment/video-comment-add.component.scss
blob: e998cba5e7fe9100b72b3c9962942153f197213d (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
@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;
  }
}

@media screen and (max-width: 450px) {
  textarea, .submit-comment button {
    font-size: 14px !important;
  }
}

.modal-body {
  .btn {
    @include peertube-button;
    @include orange-button;
  }

  span {
    float: left;
    margin-bottom: 20px;
  }
}