}
.comment-html {
- word-break: normal;
- word-wrap: break-word;
- overflow-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
- text-align: justify;
+ @include peertube-word-wrap;
/deep/ a {
@include disable-default-a-behaviour;
font-size: 15px;
.video-info-description-html {
- word-break: normal;
- word-wrap: break-word;
- overflow-wrap: break-word;
- -webkit-hyphens: auto;
- -ms-hyphens: auto;
- -moz-hyphens: auto;
- hyphens: auto;
- text-align: justify;
+ @include peertube-word-wrap;
}
.description-loading {
}
}
+@mixin peertube-word-wrap {
+ word-break: normal;
+ word-wrap: break-word;
+ overflow-wrap: break-word;
+ -webkit-hyphens: auto;
+ -ms-hyphens: auto;
+ -moz-hyphens: auto;
+ hyphens: auto;
+ text-align: justify;
+}
+
@mixin peertube-input-text($width) {
display: inline-block;
height: $button-height;