Skip to content

Commit 7087a09

Browse files
committed
Added background animation to main page.
1 parent 61807ec commit 7087a09

File tree

6 files changed

+295
-156
lines changed

6 files changed

+295
-156
lines changed

src/app/customerPanel/Components/header/header.component.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
nav {
66
display: flex;
77
justify-content: space-around;
8-
background-color: var(--primaryBgColor);
8+
background-color: rgb(var(--primaryBgColor));
99
padding: 10px;
1010
padding-top: 20px;
1111
color: white;

src/app/customerPanel/core/services/remoteConfig/remote-config.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export class RemoteConfigService {
99
constructor(
1010
private error:ErrorHandlerService,
1111
private console:ConService,
12-
private remoteConfig: AngularFireRemoteConfig,
12+
// private remoteConfig: AngularFireRemoteConfig,
1313
) { }
1414
// getRemoteConfigByKey(key:string):any{
1515
// return this.remoteConfig.getValue(key);

src/app/customerPanel/main/home/home.component.html

Lines changed: 16 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
<app-header></app-header>
22
<main>
33
<section>
4-
<div>
5-
<h1>KUMAR SAPTAM</h1>
4+
<div class="bgContainer">
5+
<div>
6+
<h1>KUMAR SAPTAM</h1>
7+
</div>
8+
<!-- <h3>Self Taught Programmer</h3> -->
9+
<div class="words">
10+
<span>S</span>
11+
<span>A</span>
12+
<span>P</span>
13+
<span>Y</span>
14+
<span>T</span>
15+
<span>H</span>
16+
<span>O</span>
17+
<span>N</span>
18+
</div>
619
</div>
7-
<!-- <h3>Self Taught Programmer</h3> -->
8-
<div class="words">
9-
<span>S</span>
10-
<span>A</span>
11-
<span>P</span>
12-
<span>Y</span>
13-
<span>T</span>
14-
<span>H</span>
15-
<span>O</span>
16-
<span>N</span>
20+
<div class="bubbleContainer">
1721
</div>
1822
</section>
1923
<!-- <section>

0 commit comments

Comments
 (0)