aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/forms/markdown-textarea.component.scss
blob: bd02343de264290be67bd51849f6347a8c9f180e (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
@import '_variables';
@import '_mixins';

.root {
  display: flex;

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

    margin-bottom: 15px;
  }

  .previews {
    max-height: 150px;
    overflow-y: auto;
    flex-grow: 1;
  }

  ::ng-deep {
    .nav-link {
      display: flex !important;
      align-items: center;
      height: 30px !important;
      padding: 0 15px !important;
      font-size: 85% !important;
      opacity: .7;
    }

    .tab-content {
      min-height: 75px;
      padding: 15px;
      font-size: 15px;
      word-wrap: break-word;
    }
  }
}