ember-tribe 2.1.0 → 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/blueprints/ember-tribe/files/.env +1 -2
- package/blueprints/ember-tribe/files/app/components/welcome-flame.hbs +5 -0
- package/blueprints/ember-tribe/files/app/styles/app.scss +34 -0
- package/blueprints/ember-tribe/files/app/templates/index.hbs +5 -5
- package/blueprints/ember-tribe/files/config/manifest.js +31 -0
- package/blueprints/ember-tribe/files/public/favicon.png +0 -0
- package/package.json +1 -1
- package/blueprints/ember-tribe/files/public/assets/img/logo-wildfire.png +0 -0
- package/blueprints/ember-tribe/files/public/assets/img/pixel-onload.png +0 -0
|
@@ -1,4 +1,38 @@
|
|
|
1
|
+
/* STYLE GUIDE */
|
|
2
|
+
//$font-family-sans-serif: "Helvetica Neue", sans-serif !default;
|
|
3
|
+
//$display-font-family: "Helvetica Neue", sans-serif !default;
|
|
4
|
+
|
|
5
|
+
//$primary: #0000ff !default;
|
|
6
|
+
//$secondary: #cccccc !default;
|
|
7
|
+
//$success: #00ff00 !default;
|
|
8
|
+
//$info: #00ffff !default;
|
|
9
|
+
//$warning: #ffff00 !default;
|
|
10
|
+
//$danger: #ff0000 !default;
|
|
11
|
+
//$light: #eeeeee !default;
|
|
12
|
+
//$dark: $333333 !default;
|
|
13
|
+
/* /STYLE GUIDE */
|
|
14
|
+
|
|
15
|
+
$enable-rounded: false !default;
|
|
16
|
+
$enable-negative-margins: true !default;
|
|
17
|
+
$enable-cssgrid: true !default;
|
|
18
|
+
|
|
19
|
+
$spacer: 1rem !default;
|
|
20
|
+
$spacers: (
|
|
21
|
+
0: 0,
|
|
22
|
+
1: $spacer * .25,
|
|
23
|
+
2: $spacer * .5,
|
|
24
|
+
3: $spacer,
|
|
25
|
+
4: $spacer * 1.5,
|
|
26
|
+
5: $spacer * 3,
|
|
27
|
+
6: $spacer * 4.5,
|
|
28
|
+
7: $spacer * 6,
|
|
29
|
+
8: $spacer * 7.5,
|
|
30
|
+
9: $spacer * 9,
|
|
31
|
+
10: $spacer * 12,
|
|
32
|
+
) !default;
|
|
33
|
+
|
|
1
34
|
@import "node_modules/bootstrap/scss/bootstrap";
|
|
35
|
+
@import "node_modules/animate.css/animate";
|
|
2
36
|
|
|
3
37
|
.flame-bg {
|
|
4
38
|
background: linear-gradient(0deg, rgba(153,51,153,1) 0%, rgba(255,51,153,1) 100%);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
{{!-- Remove the WelcomeFlame component and write your HTML code here --}}
|
|
2
|
+
|
|
3
|
+
<WelcomeFlame />
|
|
4
|
+
|
|
5
|
+
{{!-- / --}}
|
|
6
6
|
|
|
7
7
|
{{outlet}}
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
module.exports = function(/* environment, appConfig */) {
|
|
4
|
+
// See https://zonkyio.github.io/ember-web-app for a list of
|
|
5
|
+
// supported properties
|
|
6
|
+
|
|
7
|
+
return {
|
|
8
|
+
name: "<%= classifiedPackageName %>",
|
|
9
|
+
short_name: "<%= classifiedPackageName %>",
|
|
10
|
+
description: "Built using ember-tribe.",
|
|
11
|
+
start_url: "/",
|
|
12
|
+
scope: "/",
|
|
13
|
+
display: "standalone",
|
|
14
|
+
background_color: "#e9ecef",
|
|
15
|
+
theme_color: "#0A1119",
|
|
16
|
+
prefer_related_applications: true,
|
|
17
|
+
apple: {
|
|
18
|
+
statusBarStyle: 'black-translucent',
|
|
19
|
+
precomposed: 'true',
|
|
20
|
+
},
|
|
21
|
+
icons: [
|
|
22
|
+
{
|
|
23
|
+
src: '/favicon.png',
|
|
24
|
+
sizes: '512x512',
|
|
25
|
+
},
|
|
26
|
+
],
|
|
27
|
+
ms: {
|
|
28
|
+
tileColor: '#0A1119'
|
|
29
|
+
}
|
|
30
|
+
};
|
|
31
|
+
}
|
|
Binary file
|
package/package.json
CHANGED
|
Binary file
|
|
Binary file
|