[dev console] Fix embedded console rendering (#207120)

## Summary

https://github.com/elastic/kibana/pull/206887 introduced a rendering bug
to the embedded console. This PR moves the scss so that its imported in
both the console app and the embedded console, whereas previously it was
only imported to the app.



https://github.com/user-attachments/assets/60365bc4-c0c9-4642-a92b-78aa6f33c719
This commit is contained in:
Matthew Kime 2025-01-19 22:10:40 -06:00 committed by GitHub
parent b07849cc5a
commit ecd24c44f4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 1 deletions

View file

@ -7,6 +7,7 @@
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import '../../../index.scss';
import React, { useEffect, useState } from 'react';
import {
EuiFlexGroup,

View file

@ -7,7 +7,6 @@
* License v3.0 only", or the "Server Side Public License, v 1".
*/
import '../index.scss';
import React from 'react';
import { render, unmountComponentAtNode } from 'react-dom';
import { HttpSetup, NotificationsSetup, DocLinksStart } from '@kbn/core/public';