Skip to content

Commit f28c8d4

Browse files
Add missing App.css file to hello world react + cra sample (microsoft#125)
Description of changes Adds a missing App.css file back to the React + CRA hello world sample extension.
1 parent 17ef98d commit f28c8d4

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
main {
2+
display: flex;
3+
flex-direction: column;
4+
justify-content: center;
5+
align-items: flex-start;
6+
height: 100%;
7+
}
8+
9+
main > * {
10+
margin: 1rem 0;
11+
}

frameworks/hello-world-react-cra/webview-ui/src/App.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { vscode } from "./utilities/vscode";
22
import { VSCodeButton } from "@vscode/webview-ui-toolkit/react";
3+
import "./App.css";
34

45
function App() {
56
function handleHowdyClick() {

0 commit comments

Comments
 (0)