0225273 9 months ago
parent
commit
ba128bd3aa
1 changed files with 46 additions and 3 deletions
  1. 46 3
      src/app/tab1/tab1.page.scss

+ 46 - 3
src/app/tab1/tab1.page.scss

@@ -1,4 +1,47 @@
 ion-card {
-    margin: 10px;
-    left: 5px;
-  }
+  margin: 10px;
+  padding: 10px;
+  border-radius: 10px;
+  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
+}
+
+ion-card-header {
+  font-weight: bold;
+  font-size: large;
+}
+
+ion-card-content {
+  ion-grid {
+    ion-row {
+      ion-col {
+        ion-card {
+          margin-bottom: 10px;
+          border-radius: 8px;
+          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
+        }
+      }
+    }
+  }
+}
+
+ion-thumbnail {
+  width: 80px;
+  height: 80px;
+  border-radius: 50%;
+}
+
+ion-label {
+  display: block;
+  margin-left: 10px;
+}
+
+h2 {
+  font-size: 1.2em;
+  margin-bottom: 5px;
+}
+
+p {
+  font-size: 0.8em;
+  color: #777;
+  margin-bottom: 3px;
+}