MOBILE-3833 alerts: Increase max-width in alert and confirms

main
Dani Palou 2022-02-11 12:23:00 +01:00
parent 0060de1459
commit 7a554bee29
4 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,5 @@
@import "~theme/globals";
:host {
--addon-calendar-blank-day-background-color: var(--light);
@ -48,7 +50,7 @@
}
}
@media (min-width: 768px) {
@include media-breakpoint-up(md) {
.addon-calendar-day-number {
text-align: start;
}

View File

@ -1,8 +1,10 @@
@import "~theme/globals";
:host {
.core-login-onboarding-step {
padding: 10px 20px;
text-align: center;
@media (min-width: 768px) {
@include media-breakpoint-up(md) {
max-width: 80%;
}
margin: 0 auto;

View File

@ -100,7 +100,7 @@
}
}
@media (min-width: 768px) {
@include media-breakpoint-up(md) {
ion-content > * {
max-width: 600px;
margin: 0 auto;

View File

@ -393,6 +393,15 @@ ion-alert.core-nohead {
ion-alert {
--border-radius: var(--huge-radius);
&.md, &.ios {
--max-width: 80%;
@include media-breakpoint-up(md) {
--max-width: 384px;
}
}
.alert-wrapper {
overflow: auto;
border-radius: var(--border-radius) !important;