]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - client/src/app/videos/+video-watch/comment/video-comment-add.component.scss
Improve comment tree UI
[github/Chocobozzz/PeerTube.git] / client / src / app / videos / +video-watch / comment / video-comment-add.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 form {
5 margin-bottom: 30px;
6 }
7
8 .avatar-and-textarea {
9 display: flex;
10 margin-bottom: 10px;
11
12 img {
13 @include avatar(25px);
14
15 vertical-align: top;
16 margin-right: 10px;
17 }
18
19 .form-group {
20 flex-grow: 1;
21 margin: 0;
22
23 textarea {
24 @include peertube-textarea(100%, 60px);
25
26 &:focus::placeholder {
27 opacity: 0;
28 }
29 }
30 }
31 }
32
33 .submit-comment {
34 display: flex;
35 justify-content: flex-end;
36
37 button {
38 @include peertube-button;
39 @include orange-button;
40 }
41 }
42
43 @media screen and (max-width: 600px) {
44 textarea, .submit-comment button {
45 font-size: 14px !important;
46 }
47
48 textarea {
49 padding: 5px !important;
50 }
51 }
52
53 .modal-body {
54 .btn {
55 @include peertube-button;
56 @include orange-button;
57 }
58
59 span {
60 float: left;
61 margin-bottom: 20px;
62 }
63 }