added styles for withdraw modal, payments modal

This commit is contained in:
Kostya
2023-12-13 23:10:43 +03:00
parent 24f928ed84
commit d22fc6499c
2 changed files with 21 additions and 5 deletions

View File

@@ -65,7 +65,7 @@ input:focus {
.deposit-icon__input .promo-input, .deposit-icon__input .promo-input,
.deposit-icon__input .deposit-amount__input, .deposit-icon__input .deposit-amount__input,
.withdraw-input input{ .withdraw-input .with-input{
width: 350px; width: 350px;
height: 44px; height: 44px;
border-radius: 15px; border-radius: 15px;
@@ -110,6 +110,16 @@ input:focus {
margin-top: 11px; margin-top: 11px;
} }
.withdraw-checkbox {
display: flex;
align-items: center;
margin-top: 11px;
}
.withdraw-checkbox h3 {
margin: 0 0 0 5px;
}
.checkbox-styles input[type="checkbox"] { .checkbox-styles input[type="checkbox"] {
background: #22252F; background: #22252F;
border-radius: 8px; border-radius: 8px;
@@ -190,7 +200,7 @@ input[type="checkbox"]:checked::before {
} }
.btn-withdraw { .btn-withdraw {
margin-top: 30%; margin-top: 15%;
} }
/* /Withdraw */ /* /Withdraw */

View File

@@ -35,14 +35,20 @@
<div class="count-withdraw deposit-icon-diamond"> <div class="count-withdraw deposit-icon-diamond">
<h3>Сумма вывода</h3> <h3>Сумма вывода</h3>
<img src="@/assets/icons-games/saper-game/icon-diamond-ore-saper.png"> <img src="@/assets/icons-games/saper-game/icon-diamond-ore-saper.png">
<input v-model="amount" type="number"> <input class="with-input" v-model="amount" type="number">
</div> </div>
<div class="number-card deposit-promocode__padding--input"> <div class="number-card deposit-promocode__padding--input">
<h3>Введите номер карты</h3> <h3>Введите номер карты</h3>
<input v-model="card" type="number"> <input class="with-input" v-model="card" type="number">
</div> </div>
<div class="btn-withdraw btn-style-payments"> <div class="withdraw-checkbox checkbox-styles">
<input type="checkbox">
<h3>Я согласен с пользовательским соглашением.</h3>
</div>
<div class="btn-withdraw btn-text-style btn-display-deposit btn-style-payments">
<p>Вы подтверждаете правильность введенных данных при создании вывода.</p>
<button type="submit">Вывод</button> <button type="submit">Вывод</button>
<p>Перед выводом прочитайте политику конфиденциальности и пользовательское соглашение.</p>
</div> </div>
</div> </div>
</div> </div>