|
@@ -81,14 +81,11 @@
|
|
|
|
|
|
margin-right: calc( $avatar-size + (0.5 * #{map-deep-get($config-global, "spacing", "horizontal")}) );
|
|
margin-right: calc( $avatar-size + (0.5 * #{map-deep-get($config-global, "spacing", "horizontal")}) );
|
|
|
|
|
|
- @include media(mobile) {
|
|
|
|
- margin-right: inherit;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
.comment-author {
|
|
.comment-author {
|
|
line-height: #{map-deep-get($config-global, "font", "line-height", "heading")};
|
|
line-height: #{map-deep-get($config-global, "font", "line-height", "heading")};
|
|
margin-bottom: #{.25 * map-deep-get($config-global, "spacing", "unit")};
|
|
margin-bottom: #{.25 * map-deep-get($config-global, "spacing", "unit")};
|
|
padding-right: #{2.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
|
padding-right: #{2.5 * map-deep-get($config-global, "spacing", "horizontal")};
|
|
|
|
+ max-width: calc(100% - #{3 * map-deep-get($config-global, "spacing", "horizontal")});
|
|
|
|
|
|
@include media(mobile) {
|
|
@include media(mobile) {
|
|
display: flex;
|
|
display: flex;
|
|
@@ -96,18 +93,17 @@
|
|
margin-bottom: 0;
|
|
margin-bottom: 0;
|
|
padding-right: 0;
|
|
padding-right: 0;
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ .fn {
|
|
|
|
+ word-wrap: break-word;
|
|
|
|
+ word-break: break-word;
|
|
|
|
+ hyphens: auto;
|
|
|
|
+ }
|
|
|
|
|
|
.avatar {
|
|
.avatar {
|
|
display: block;
|
|
display: block;
|
|
position: absolute;
|
|
position: absolute;
|
|
right: 0;
|
|
right: 0;
|
|
-
|
|
|
|
- @include media(mobile) {
|
|
|
|
- margin-right: #{map-deep-get($config-global, "spacing", "horizontal")};
|
|
|
|
- display: inherit;
|
|
|
|
- position: inherit;
|
|
|
|
- right: inherit;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -130,9 +126,32 @@
|
|
}
|
|
}
|
|
|
|
|
|
@include media(mobile) {
|
|
@include media(mobile) {
|
|
|
|
+ margin-right: inherit;
|
|
align-items: center;
|
|
align-items: center;
|
|
display: flex;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
justify-content: space-between;
|
|
|
|
+
|
|
|
|
+ .comment-author {
|
|
|
|
+ display: flex;
|
|
|
|
+ align-items: center;
|
|
|
|
+ max-width: inherit;
|
|
|
|
+ flex: 0 1 auto;
|
|
|
|
+
|
|
|
|
+ .fn {
|
|
|
|
+ padding-right: #{map-deep-get($config-global, "spacing", "horizontal")};
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .avatar {
|
|
|
|
+ margin-right: #{map-deep-get($config-global, "spacing", "horizontal")};
|
|
|
|
+ display: inherit;
|
|
|
|
+ position: inherit;
|
|
|
|
+ right: inherit;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ .comment-metadata {
|
|
|
|
+ flex: 0 1 auto;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|