Skip to content

Commit b231b26

Browse files
authored
ASBLY-279: Fix reset CSS for deployed demo app (#468)
* fix: add reset css to django_index file. run yarn bootstrap * update: update demo * chore: yarn semver and updates
1 parent defc0f8 commit b231b26

File tree

7 files changed

+880
-458
lines changed

7 files changed

+880
-458
lines changed

dist/cookie/{{cookiecutter.project_slug}}/.crowdbotics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"scaffold": {
33
"type": "react-native",
4-
"version": "2.7.1",
4+
"version": "2.7.2",
55
"cookiecutter_context": {
66
"project_name": "{{cookiecutter.project_name}}",
77
"project_slug": "{{cookiecutter.project_slug}}",

dist/cookie/{{cookiecutter.project_slug}}/public/django_index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
99
<meta name="theme-color" content="#000000">
1010
<title>React App</title>
11+
<style>
12+
html, body {
13+
height: 100%;
14+
margin: 0;
15+
padding: 0;
16+
}
17+
18+
#root {
19+
height: 100%;
20+
display: flex;
21+
flex-direction: column;
22+
}
23+
</style>
1124
</head>
1225

1326
<body>

dist/cookie/{{cookiecutter.project_slug}}/yarn.lock

Lines changed: 851 additions & 455 deletions
Large diffs are not rendered by default.

dist/react-native-demo.zip

6.82 KB
Binary file not shown.

scaffold/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "template",
33
"description": "React Native Template",
4-
"version": "2.7.1",
4+
"version": "2.7.2",
55
"author": "Crowdbotics"
66
}

scaffold/template/custom/.crowdbotics.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"scaffold": {
33
"type": "react-native",
4-
"version": "2.7.1",
4+
"version": "2.7.2",
55
"cookiecutter_context": {
66
"project_name": "{{cookiecutter.project_name}}",
77
"project_slug": "{{cookiecutter.project_slug}}",

scaffold/template/custom/public/django_index.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,19 @@
88
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
99
<meta name="theme-color" content="#000000">
1010
<title>React App</title>
11+
<style>
12+
html, body {
13+
height: 100%;
14+
margin: 0;
15+
padding: 0;
16+
}
17+
18+
#root {
19+
height: 100%;
20+
display: flex;
21+
flex-direction: column;
22+
}
23+
</style>
1124
</head>
1225

1326
<body>

0 commit comments

Comments
 (0)