@gitlab/ui 101.5.0 → 101.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/dist/components/experimental/duo/chat/duo_chat.js +1 -1
- package/dist/index.css +1 -1
- package/dist/index.css.map +1 -1
- package/package.json +1 -1
- package/src/components/base/drawer/drawer.scss +1 -1
- package/src/components/base/table/table.scss +1 -2
- package/src/components/experimental/duo/chat/duo_chat.vue +5 -1
- package/src/scss/mixins.scss +1 -0
package/package.json
CHANGED
|
@@ -585,7 +585,11 @@ export default {
|
|
|
585
585
|
</gl-alert>
|
|
586
586
|
</header>
|
|
587
587
|
|
|
588
|
-
<div
|
|
588
|
+
<div
|
|
589
|
+
class="duo-chat-drawer-body gl-bg-white"
|
|
590
|
+
data-testid="chat-history"
|
|
591
|
+
@scroll="handleScrollingTrottled"
|
|
592
|
+
>
|
|
589
593
|
<transition-group
|
|
590
594
|
tag="section"
|
|
591
595
|
name="message"
|
package/src/scss/mixins.scss
CHANGED
|
@@ -182,6 +182,7 @@
|
|
|
182
182
|
font-weight: $gl-font-weight-heading;
|
|
183
183
|
margin-top: 0; // override bootstrap reset in GitLab
|
|
184
184
|
font-size: get-font-size-variable($size, $fixed);
|
|
185
|
+
@apply gl-text-heading;
|
|
185
186
|
|
|
186
187
|
// Larger headings have reduced letter spacing
|
|
187
188
|
@if ($size <= 500) {
|