wrap the hotkeys component to allow templating :art:
[oweals/peertube.git] / client / src / app / shared / forms / markdown-textarea.component.scss
1 @import '_variables';
2 @import '_mixins';
3
4 .root {
5   display: flex;
6
7   textarea {
8     @include peertube-textarea(100%, 150px);
9
10     margin-bottom: 15px;
11   }
12
13   .previews {
14     max-height: 150px;
15     overflow-y: auto;
16     flex-grow: 1;
17   }
18
19   /deep/ {
20     .nav-link {
21       display: flex !important;
22       align-items: center;
23       height: 30px !important;
24       padding: 0 15px !important;
25     }
26
27     .tab-content {
28       min-height: 75px;
29       padding: 15px;
30       font-size: 15px;
31       word-wrap: break-word;
32     }
33   }
34 }