Skip to content

Commit

Permalink
Tidy up examples
Browse files Browse the repository at this point in the history
  • Loading branch information
shayneczyzewski committed Nov 14, 2022
1 parent 2fe7398 commit bcfb935
Show file tree
Hide file tree
Showing 12 changed files with 49 additions and 20 deletions.
4 changes: 2 additions & 2 deletions examples/realworld/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client
9 changes: 9 additions & 0 deletions examples/realworld/ext/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
2 changes: 2 additions & 0 deletions examples/realworld/src/client/MainPage.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ import Navbar from './Navbar'
import ArticleListPaginated from './article/components/ArticleListPaginated'
import addWaspSourceHeader from './addWaspSourceHeader'

import './style.css'

const MainPage = () => {
const { data: me } = useAuth()

Expand Down
4 changes: 2 additions & 2 deletions examples/thoughts/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client
8 changes: 8 additions & 0 deletions examples/thoughts/src/client/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}

button.plain {
border: none;
outline: none;
Expand Down
4 changes: 2 additions & 2 deletions examples/tutorials/ItWaspsOnMyMachine/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client

This file was deleted.

4 changes: 2 additions & 2 deletions examples/tutorials/TodoApp/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client
4 changes: 2 additions & 2 deletions examples/waspello/.gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client
8 changes: 8 additions & 0 deletions examples/waspello/src/client/Main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@
box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
}

.container {
min-height: 100vh;
display: flex;
Expand Down
4 changes: 2 additions & 2 deletions examples/waspleau/.gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/.wasp/
/.env.server
/.env.client
.env.server
.env.client
.DS_Store
10 changes: 10 additions & 0 deletions examples/waspleau/src/client/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
body {
margin: 0;
padding: 0;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

.container {
margin: 40px;
}
Expand Down

0 comments on commit bcfb935

Please sign in to comment.