2023-01-03 12:56:18 -08:00
|
|
|
@use "sass:map";
|
|
|
|
|
2023-01-03 03:35:05 -08:00
|
|
|
.comment {
|
|
|
|
list-style-type: none;
|
2023-01-03 12:56:18 -08:00
|
|
|
margin-bottom: map.get($spacers, 2);
|
2023-01-03 03:35:05 -08:00
|
|
|
|
|
|
|
&__container {
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__user,
|
|
|
|
&__content {
|
|
|
|
margin-bottom: 0;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__user-avatar {
|
2023-01-03 12:56:18 -08:00
|
|
|
margin-right: map.get($spacers, 2);
|
2023-01-03 03:35:05 -08:00
|
|
|
border-radius: $avatar-border-radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input-group {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__input {
|
|
|
|
padding-right: 2.5rem;
|
|
|
|
|
|
|
|
&.is-invalid {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&__character-count {
|
|
|
|
position: absolute;
|
|
|
|
z-index: 5;
|
|
|
|
right: .5rem;
|
|
|
|
top: .5rem;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|