PeerTube/client/src/app/shared/forms/markdown-textarea.component...

37 lines
580 B
SCSS
Raw Normal View History

@import '_variables';
@import '_mixins';
.root {
display: flex;
2018-05-09 15:42:36 +02:00
textarea {
@include peertube-textarea(100%, 150px);
margin-bottom: 15px;
}
2018-05-09 15:42:36 +02:00
.previews {
max-height: 150px;
overflow-y: auto;
flex-grow: 1;
2018-05-09 15:42:36 +02:00
}
2019-07-24 16:12:35 +02:00
::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;
2018-02-20 16:13:05 +01:00
word-wrap: break-word;
}
}
}