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 08:42:36 -05:00
textarea {
@include peertube-textarea(100%, 150px);
margin-bottom: 15px;
}
2018-05-09 08:42:36 -05:00
.previews {
max-height: 150px;
overflow-y: auto;
flex-grow: 1;
2018-05-09 08:42:36 -05:00
}
2019-07-24 09:12:35 -05: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 09:13:05 -06:00
word-wrap: break-word;
}
}
}