Skip to content

Commit d6649d6

Browse files
committed
Updates integration popover width
Updates #4064
1 parent c55a9be commit d6649d6

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

src/webviews/apps/home/home.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,8 +69,8 @@ export class GlHomeApp extends GlApp<State> {
6969
return html`
7070
<div class="home scrollable">
7171
<gl-home-header class="home__header"></gl-home-header>
72-
${when(this.state?.amaBannerCollapsed === false, () => html`<gl-ama-banner></gl-ama-banner>`)}
7372
${when(!this.state?.previewEnabled, () => html`<gl-preview-banner></gl-preview-banner>`)}
73+
${when(this.state?.amaBannerCollapsed === false, () => html`<gl-ama-banner></gl-ama-banner>`)}
7474
<gl-repo-alerts class="home__alerts"></gl-repo-alerts>
7575
<main class="home__main scrollable" id="main">
7676
${when(

src/webviews/apps/plus/shared/components/integrations-chip.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -144,6 +144,10 @@ export class GLIntegrationsChip extends LitElement {
144144
p {
145145
margin: 0;
146146
}
147+
148+
gl-popover::part(body) {
149+
--max-width: 90vw;
150+
}
147151
`,
148152
];
149153

0 commit comments

Comments
 (0)