File tree Expand file tree Collapse file tree 1 file changed +11
-7
lines changed
src/webviews/apps/plus/graph Expand file tree Collapse file tree 1 file changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -5,19 +5,23 @@ import { ifDefined } from 'lit/directives/if-defined.js';
55import { createWebviewCommandLink } from '../../../../system/webview' ;
66import type { State } from '../../../plus/graph/protocol' ;
77import { GlElement } from '../../shared/components/element' ;
8+ import { linkStyles } from '../shared/components/vscode.css' ;
89import { stateContext } from './context' ;
910import '../../shared/components/feature-badge' ;
1011import '../../shared/components/feature-gate' ;
1112
1213@customElement ( 'gl-graph-gate' )
1314export class GlGraphGate extends GlElement {
14- static override styles = css `
15- gl-feature-gate gl-feature-badge {
16- vertical-align: super;
17- margin-left: 0.4rem;
18- margin-right: 0.4rem;
19- }
20- ` ;
15+ static override styles = [
16+ linkStyles ,
17+ css `
18+ gl-feature-gate gl-feature-badge {
19+ vertical-align: super;
20+ margin-left: 0.4rem;
21+ margin-right: 0.4rem;
22+ }
23+ ` ,
24+ ] ;
2125
2226 @consume ( { context : stateContext , subscribe : true } )
2327 @state ( )
You can’t perform that action at this time.
0 commit comments