nafis nibir 6 年之前
父節點
當前提交
b09b911c8a

+ 2
- 2
src/pages/games/games.html 查看文件

@@ -23,14 +23,14 @@
23 23
   </ion-navbar>
24 24
 </ion-header>
25 25
 
26
-<ion-content padding>
26
+<ion-content class = "games-content" padding>
27 27
   <ion-list>
28 28
     <ion-item-sliding  *ngFor="let game of userGames" (click)="openSummary({id:game.id})">
29 29
     <ion-item>
30 30
         <ion-thumbnail item-start>
31 31
             <img src="{{game.imageURL}}">
32 32
         </ion-thumbnail>
33
-      <h2>{{game.title}}</h2>
33
+      <h2><strong>{{game.title}}</strong></h2>
34 34
       <h3>{{ game.studio }}</h3>
35 35
       <h4>{{ game.platform }}</h4>
36 36
     </ion-item>

+ 13
- 0
src/pages/games/games.scss 查看文件

@@ -1,3 +1,16 @@
1 1
 page-games {
2 2
 
3
+    .toolbar-background {
4
+        background-color: rgb(188, 228, 194);
5
+      }
6
+
7
+    .games-content {
8
+        background: #fcf1e0;
9
+
10
+        ion-item {
11
+            background: #fcf1e0;
12
+        }
13
+    }
14
+
15
+    
3 16
 }

+ 1
- 1
src/pages/home/home.html 查看文件

@@ -4,7 +4,7 @@
4 4
   </ion-navbar>
5 5
 </ion-header>
6 6
 
7
-<ion-content padding>
7
+<ion-content class="games-content" padding>
8 8
   <h2>Total Games Added By Users</h2>
9 9
   <ion-list>
10 10
     <ion-item-sliding  *ngFor="let game of games" (click)="openSummary({id:game.id})">

+ 10
- 0
src/pages/home/home.scss 查看文件

@@ -1,3 +1,13 @@
1 1
 page-home {
2
+    .toolbar-background {
3
+        background-color: rgb(188, 228, 194);
4
+      }
2 5
 
6
+      .games-content {
7
+        background: #fcf1e0;
8
+
9
+        ion-item {
10
+            background: #fcf1e0;
11
+        }
12
+    }
3 13
 }

+ 3
- 0
src/pages/tabs/tabs.scss 查看文件

@@ -0,0 +1,3 @@
1
+.tabs-md .tabbar {
2
+    background: rgb(188, 228, 194);
3
+}

+ 1
- 1
src/pages/user/user.html 查看文件

@@ -4,7 +4,7 @@
4 4
   </ion-navbar>
5 5
 </ion-header>
6 6
 
7
-<ion-content padding>
7
+<ion-content class = "user-page" padding>
8 8
   <ion-list>
9 9
     <h2>Email</h2>
10 10
     <h2>{{singleUser.email}}</h2>

+ 6
- 1
src/pages/user/user.scss 查看文件

@@ -1,3 +1,8 @@
1 1
 page-user {
2
-
2
+    .toolbar-background {
3
+        background-color: rgb(188, 228, 194);
4
+      }
5
+    .user-page {
6
+        background: #fcf1e0;
7
+    }  
3 8
 }