35 lines
457 B
SCSS
35 lines
457 B
SCSS
|
.comment {
|
||
|
list-style-type: none;
|
||
|
|
||
|
&__container {
|
||
|
padding-left: 0;
|
||
|
}
|
||
|
|
||
|
&__user,
|
||
|
&__content {
|
||
|
margin-bottom: 0px;
|
||
|
}
|
||
|
|
||
|
&__user-avatar {
|
||
|
margin-right: map-get($spacers, 2);
|
||
|
border-radius: $avatar-border-radius;
|
||
|
}
|
||
|
|
||
|
&__input-group {
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
&__input {
|
||
|
z-index: 99;
|
||
|
padding-right: 2.5rem;
|
||
|
}
|
||
|
|
||
|
&__character-count {
|
||
|
position: absolute;
|
||
|
z-index: 100;
|
||
|
right: .5rem;
|
||
|
top: .5rem;
|
||
|
}
|
||
|
}
|
||
|
|