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 {
|
|
|
|
&.is-invalid {
|
|
|
|
background-image: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-07 08:56:39 -08:00
|
|
|
&__compose-wrapper {
|
|
|
|
display: flex;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__submit-wrapper {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
text-align: center;
|
|
|
|
margin-left: .5rem;
|
2023-01-03 03:35:05 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|