24 lines
333 B
SCSS
24 lines
333 B
SCSS
.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;
|
|
}
|
|
}
|
|
}
|