2023-10-20 15:25:51 -07:00
|
|
|
@use "sass:map";
|
|
|
|
|
2023-01-03 03:35:05 -08:00
|
|
|
.question {
|
2023-10-20 15:25:51 -07:00
|
|
|
|
|
|
|
&__avatar {
|
|
|
|
margin-right: map.get($spacers, 2);
|
|
|
|
border-radius: $avatar-border-radius;
|
|
|
|
}
|
|
|
|
|
|
|
|
&__text,
|
|
|
|
&__user {
|
|
|
|
margin-bottom: 0;
|
|
|
|
overflow: hidden;
|
|
|
|
word-break: break-word;
|
|
|
|
}
|
|
|
|
|
|
|
|
&--sticky {
|
|
|
|
border-radius: 0;
|
2023-01-03 03:35:05 -08:00
|
|
|
width: 100%;
|
|
|
|
|
|
|
|
@include media-breakpoint-up('sm') {
|
2023-10-20 15:25:51 -07:00
|
|
|
position: sticky;
|
|
|
|
top: $navbar-height;
|
2023-12-09 13:52:27 -08:00
|
|
|
z-index: 1;
|
2023-01-03 03:35:05 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|