diff --git a/client/src/app/shared/shared-custom-markup/custom-markup-container.component.html b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.html index 3ad88645d..6bf2294a3 100644 --- a/client/src/app/shared/shared-custom-markup/custom-markup-container.component.html +++ b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.html @@ -1 +1 @@ -
+ diff --git a/client/src/app/shared/shared-custom-markup/custom-markup-container.component.scss b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.scss new file mode 100644 index 000000000..044db9536 --- /dev/null +++ b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.scss @@ -0,0 +1,10 @@ +.custom-markup-container { + + ::ng-deep .peertube-container { + margin: 30px 0 15px; + + h4 { + margin-bottom: 0; + } + } +} diff --git a/client/src/app/shared/shared-custom-markup/custom-markup-container.component.ts b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.ts index 3d49c6768..2ecdc0243 100644 --- a/client/src/app/shared/shared-custom-markup/custom-markup-container.component.ts +++ b/client/src/app/shared/shared-custom-markup/custom-markup-container.component.ts @@ -3,7 +3,8 @@ import { CustomMarkupService } from './custom-markup.service' @Component({ selector: 'my-custom-markup-container', - templateUrl: './custom-markup-container.component.html' + templateUrl: './custom-markup-container.component.html', + styleUrls: [ './custom-markup-container.component.scss' ] }) export class CustomMarkupContainerComponent implements OnChanges { @ViewChild('contentWrapper') contentWrapper: ElementRef