Selaa lähdekoodia

final scss to register alert

nafis nibir 6 vuotta sitten
vanhempi
commit
d2facf79bd

+ 0
- 2
src/pages/login/login.scss Näytä tiedosto

58
   .alertCustomCss {
58
   .alertCustomCss {
59
     color: rgb(2, 1, 1); 
59
     color: rgb(2, 1, 1); 
60
     text-align: center;
60
     text-align: center;
61
-
62
     background-color: #89c084;
61
     background-color: #89c084;
63
-
64
     .alert-wrapper {
62
     .alert-wrapper {
65
         background-color: rgb(188, 228, 194); // bg color of alert content
63
         background-color: rgb(188, 228, 194); // bg color of alert content
66
     }
64
     }

+ 9
- 0
src/pages/register/register.scss Näytä tiedosto

48
     }
48
     }
49
   }
49
   }
50
 }
50
 }
51
+
52
+.alertCustomCss {
53
+  color: rgb(2, 1, 1); 
54
+  text-align: center;
55
+  background-color: #89c084;
56
+  .alert-wrapper {
57
+      background-color: rgb(188, 228, 194); // bg color of alert content
58
+  }
59
+}

+ 2
- 1
src/pages/register/register.ts Näytä tiedosto

48
     return this.alertCtrl.create({
48
     return this.alertCtrl.create({
49
       title: title,
49
       title: title,
50
       subTitle: text,
50
       subTitle: text,
51
-      buttons
51
+      buttons,
52
+      cssClass:'alertCustomCss'
52
     }).present();
53
     }).present();
53
   }
54
   }
54
 }
55
 }