Skip to content

Commit 8565aff

Browse files
committed
Make tabs spacing consistent
1 parent b785421 commit 8565aff

File tree

4 files changed

+22
-23
lines changed

4 files changed

+22
-23
lines changed

src/app/app.html

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<main>
2-
<h1 class="title">{{app.greetingText}}</h1>
2+
<h1 class="title">{{app.greetingText}}</h1>
33

4-
<!-- Images (and assets) are parsed and loaded from within the public directory -->
5-
<img src="/img/logo.png">
4+
<!-- Images (and assets) are parsed and loaded from within the public directory -->
5+
<img src="/img/logo.png">
66
</main>
77
<footer>
8-
<a ng-href="{{app.url}}">Webpack Angular Starter</a>
8+
<a ng-href="{{app.url}}">Webpack Angular Starter</a>
99
</footer>

src/public/index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<!DOCTYPE html>
22
<html ng-app="app" lang="en">
33
<head>
4-
<meta charset="UTF-8">
5-
<title>Angular App</title>
6-
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
7-
<meta name="viewport" content="width=device-width, initial-scale=1">
8-
9-
<base href="/">
4+
<meta charset="UTF-8">
5+
<title>Angular App</title>
6+
<link rel="icon" type="image/x-icon" href="/img/favicon.ico">
7+
<meta name="viewport" content="width=device-width, initial-scale=1">
8+
9+
<base href="/">
1010
</head>
1111
<body>
12-
<app></app>
12+
<app></app>
1313
</body>
1414
</html>

src/style/app.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
/* styles in src/style directory are applied to the whole page */
22
body {
3-
background: #0147A7;
4-
color: #fff;
3+
background: #0147A7;
4+
color: #fff;
55
}
66

77
a {
8-
color: #03A9F4;
8+
color: #03A9F4;
99
}
1010

1111
main {
12-
padding: 1em;
13-
font-family: Arial, Helvetica, sans-serif;
14-
text-align: center;
15-
margin-top: 50px;
16-
display: block;
12+
padding: 1em;
13+
font-family: Arial, Helvetica, sans-serif;
14+
text-align: center;
15+
margin-top: 50px;
16+
display: block;
1717
}
1818

1919
footer {
20-
text-align: center;
21-
font-size: 0.8em;
20+
text-align: center;
21+
font-size: 0.8em;
2222
}

src/tests.webpack.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,4 @@ import 'angular-mocks/angular-mocks';
66

77
const context = require.context('./app', true, /\.js$/);
88

9-
context.keys().forEach(context);
10-
9+
context.keys().forEach(context);

0 commit comments

Comments
 (0)