Skip to content

Commit 65559d1

Browse files
committedSep 16, 2022
Change Home page & css data
1 parent cf8de47 commit 65559d1

File tree

6 files changed

+4
-30
lines changed

6 files changed

+4
-30
lines changed
 

‎angular/src/app/app.component.css

-13
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,6 @@
2525
color: rgba(255, 255, 255, 0.75);
2626
}
2727

28-
29-
.nga-btn-navbar {
30-
color: #fff;
31-
background-color: #1976d2;
32-
border-color: #0d6efd;
33-
}
34-
35-
.nga-btn-navbar:hover {
36-
color: white;
37-
background-color: #0b5ed7;
38-
border-color: #0a58ca;
39-
}
40-
4128
.nga-logo {
4229
font-weight: 700;
4330
}

‎angular/src/app/app.component.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
</li>
2828
</ul>
2929
<form class="d-flex">
30-
<button type="button" class="btn btn-sm nga-btn-navbar me-2" routerLink="/signup"><i
30+
<button type="button" class="btn btn-sm btn-primary me-2" routerLink="/signup"><i
3131
class="fas fa-user-plus me-2"></i>Sign up</button>
3232
<button type="button" class="btn btn-sm btn-outline-light me-2" routerLink="/login"><i
3333
class="fas fa-sign-in-alt me-2"></i>Login</button>

‎angular/src/environments/environment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export const environment = {
22
production: false,
33
application:
44
{
5-
name: 'angular-starter',
5+
name: 'angular-bootstrap',
66
version: 'Angular 14.2.2',
77
bootstrap: 'Bootstrap 5.2.1',
88
fontawesome: 'Font Awesome 6.2.0',

‎angular/ui/angular-starter-home.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@
158158
</li>
159159
</ul>
160160
<form class="d-flex">
161-
<button type="button" class="btn btn-sm btn btn-primary me-2" routerLink="/signup"><i
161+
<button type="button" class="btn btn-sm btn-primary me-2" routerLink="/signup"><i
162162
class="fas fa-user-plus me-2"></i>Sign up</button>
163163
<button type="button" class="btn btn-sm btn-outline-light me-2" routerLink="/login"><i
164164
class="fas fa-sign-in-alt me-2"></i>Login</button>

‎react/src/app/app.css

-13
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,6 @@
2525
color: rgba(255, 255, 255, 0.75);
2626
}
2727

28-
29-
.nga-btn-navbar {
30-
color: #fff;
31-
background-color: #1976d2;
32-
border-color: #0d6efd;
33-
}
34-
35-
.nga-btn-navbar:hover {
36-
color: white;
37-
background-color: #0b5ed7;
38-
border-color: #0a58ca;
39-
}
40-
4128
.nga-logo {
4229
font-weight: 700;
4330
}

‎react/src/app/app.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class App extends React.Component {
6363

6464
<form className="d-flex">
6565
<Link to="/signup">
66-
<button type="button" className="btn btn-sm nga-btn-navbar me-2"><i className="fas fa-user-plus me-2"></i>Sign
66+
<button type="button" className="btn btn-sm btn-primary me-2"><i className="fas fa-user-plus me-2"></i>Sign
6767
up</button>
6868
</Link>
6969
<Link to="/login">

0 commit comments

Comments
 (0)
Please sign in to comment.