Browse Source

changed class name in home,ts/home.scss from head to title

Kris Blassingame 6 years ago
parent
commit
924f4d9a9c

+ 1
- 1
frontEnd/src/app/app.component.ts View File

11
   templateUrl: 'app.html'
11
   templateUrl: 'app.html'
12
 })
12
 })
13
 export class MyApp {
13
 export class MyApp {
14
-  rootPage:any = MainMenuPage;
14
+  rootPage:any = HomePage;
15
 
15
 
16
   constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
16
   constructor(platform: Platform, statusBar: StatusBar, splashScreen: SplashScreen) {
17
     platform.ready().then(() => {
17
     platform.ready().then(() => {

+ 1
- 1
frontEnd/src/pages/home/home.html View File

1
 <ion-content text-center padding class="bg-image">
1
 <ion-content text-center padding class="bg-image">
2
-  <div class="head" text-center>
2
+  <div class="title" text-center>
3
     <h1>Happy Trails</h1>
3
     <h1>Happy Trails</h1>
4
   </div>
4
   </div>
5
   <div class="inputs">
5
   <div class="inputs">

+ 2
- 2
frontEnd/src/pages/home/home.scss View File

6
         background-position: center;
6
         background-position: center;
7
         background-size: cover;
7
         background-size: cover;
8
     }
8
     }
9
-    .head {
9
+    .title {
10
         position: absolute;
10
         position: absolute;
11
         display: block;
11
         display: block;
12
         top: 22%;
12
         top: 22%;
18
         -webkit-background-clip: text;
18
         -webkit-background-clip: text;
19
         color: transparent;
19
         color: transparent;
20
     }
20
     }
21
-    .head h1 {
21
+    .title h1 {
22
         font-size: 7vh !important;
22
         font-size: 7vh !important;
23
         font-weight: lighter !important;
23
         font-weight: lighter !important;
24
         font-family: 'Permanent Marker', cursive;
24
         font-family: 'Permanent Marker', cursive;