Skip to content

Commit

Permalink
ASBLY-279: Fix reset CSS for deployed demo app (#468)
Browse files Browse the repository at this point in the history
* fix: add reset css to django_index file. run yarn bootstrap

* update: update demo

* chore: yarn semver and updates
  • Loading branch information
alaisgomes authored Aug 15, 2024
1 parent defc0f8 commit b231b26
Show file tree
Hide file tree
Showing 7 changed files with 880 additions and 458 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scaffold": {
"type": "react-native",
"version": "2.7.1",
"version": "2.7.2",
"cookiecutter_context": {
"project_name": "{{cookiecutter.project_name}}",
"project_slug": "{{cookiecutter.project_slug}}",
Expand Down
13 changes: 13 additions & 0 deletions dist/cookie/{{cookiecutter.project_slug}}/public/django_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<title>React App</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}

#root {
height: 100%;
display: flex;
flex-direction: column;
}
</style>
</head>

<body>
Expand Down
1,306 changes: 851 additions & 455 deletions dist/cookie/{{cookiecutter.project_slug}}/yarn.lock

Large diffs are not rendered by default.

Binary file modified dist/react-native-demo.zip
Binary file not shown.
2 changes: 1 addition & 1 deletion scaffold/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "template",
"description": "React Native Template",
"version": "2.7.1",
"version": "2.7.2",
"author": "Crowdbotics"
}
2 changes: 1 addition & 1 deletion scaffold/template/custom/.crowdbotics.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"scaffold": {
"type": "react-native",
"version": "2.7.1",
"version": "2.7.2",
"cookiecutter_context": {
"project_name": "{{cookiecutter.project_name}}",
"project_slug": "{{cookiecutter.project_slug}}",
Expand Down
13 changes: 13 additions & 0 deletions scaffold/template/custom/public/django_index.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="theme-color" content="#000000">
<title>React App</title>
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}

#root {
height: 100%;
display: flex;
flex-direction: column;
}
</style>
</head>

<body>
Expand Down

0 comments on commit b231b26

Please sign in to comment.