123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- /* tab3.page.scss */
- ion-header {
- background-color: #f8f8f8;
- ion-toolbar {
- --background: #fff;
- --color: #333;
- ion-title {
- font-size: 22px;
- font-weight: bold;
- color: #222;
- }
- }
- }
-
- ion-content {
- padding: 16px;
- background-color: #f4f5f8;
- }
-
- .user-info {
- display: flex;
- align-items: center;
- padding: 16px;
- background-color: #ffffff;
- border-radius: 8px;
- margin-bottom: 16px;
- }
-
- .user-info ion-avatar {
- margin-right: 16px;
- }
-
- .user-info ion-label h2 {
- font-size: 18px;
- font-weight: bold;
- color: #333;
- }
-
- .user-info ion-label p {
- color: #888;
- font-size: 14px;
- }
-
- .user-actions {
- display: flex;
- flex-direction: column;
- gap: 8px;
- }
-
- ion-card {
- margin-bottom: 16px;
- border-radius: 8px;
- }
-
- ion-card-header {
- background-color: #f8f8f8;
- ion-card-title {
- font-size: 18px;
- font-weight: bold;
- color: #333;
- }
- }
-
- ion-card-content {
- background-color: #fff;
- ion-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- ion-label {
- font-size: 16px;
- color: #444;
- }
- ion-button {
- font-weight: bold;
- }
- }
- }
-
- ion-item {
- margin-bottom: 12px;
- --inner-padding-start: 12px;
- --inner-padding-end: 12px;
- }
-
- ion-item button {
- --background: #f4f5f8;
- --border-radius: 8px;
- --padding-start: 16px;
- --padding-end: 16px;
- --color: #333;
- }
-
- ion-item button:hover {
- --background: #e0e0e0;
- }
-
- ion-icon {
- font-size: 20px;
- color: #888;
- }
-
- ion-item button ion-icon {
- margin-right: 12px;
- }
-
- ion-button {
- border-radius: 8px;
- }
-
- ion-card-title {
- font-size: 16px;
- font-weight: 500;
- }
-
|