Retrospring/app/assets/stylesheets/components/_comments.scss

44 lines
617 B
SCSS
Raw Normal View History

2023-01-03 12:56:18 -08:00
@use "sass:map";
.comment {
list-style-type: none;
2023-01-03 12:56:18 -08:00
margin-bottom: map.get($spacers, 2);
&__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);
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;
2023-03-10 12:06:11 -08:00
margin-left: 0.5rem;
}
}