feat(miniapp): improve billing settings controls

This commit is contained in:
2026-03-12 11:37:57 +04:00
parent 4c19ee798d
commit a50b826b40
7 changed files with 358 additions and 25 deletions

View File

@@ -858,6 +858,11 @@ button {
line-height: 1.2;
}
.settings-field input[aria-invalid='true'] {
border-color: rgb(247 115 115 / 0.45);
background: rgb(247 115 115 / 0.08);
}
.settings-field select {
appearance: none;
-webkit-appearance: none;
@@ -967,6 +972,21 @@ button {
cursor: pointer;
}
.timezone-suggestions {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.timezone-chip {
border: 1px solid transparent;
}
.timezone-chip--active {
border-color: rgb(247 179 137 / 0.44);
background: rgb(247 179 137 / 0.18);
}
.testing-card {
gap: 12px;
}