1
0
Fork 0

Fix peertube container in markdown preview

This commit is contained in:
Chocobozzz 2021-06-29 15:17:01 +02:00
parent d4a8e7a65f
commit 24893b524c
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
4 changed files with 23 additions and 26 deletions

View File

@ -1,24 +0,0 @@
.custom-markup-container {
::ng-deep .peertube-container {
&.layout-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
&.layout-column {
display: flex;
flex-direction: column;
}
.header {
margin: 30px 0 15px;
}
h4 {
margin-bottom: 0;
}
}
}

View File

@ -3,8 +3,7 @@ import { CustomMarkupService } from './custom-markup.service'
@Component({
selector: 'my-custom-markup-container',
templateUrl: './custom-markup-container.component.html',
styleUrls: [ './custom-markup-container.component.scss' ]
templateUrl: './custom-markup-container.component.html'
})
export class CustomMarkupContainerComponent implements OnChanges {
@ViewChild('contentWrapper') contentWrapper: ElementRef<HTMLInputElement>

View File

@ -11,6 +11,8 @@ $icon-font-path: '~@neos21/bootstrap3-glyphicons/assets/fonts/';
@use './classes';
@use './custom-markup';
[hidden] {
display: none !important;
}

View File

@ -0,0 +1,20 @@
peertube-container {
> .layout-row {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
> .layout-column {
display: flex;
flex-direction: column;
}
> .header {
margin: 30px 0 15px;
> h4 {
margin-bottom: 0;
}
}
}