WIP Поправил валидации на инпутах и баг с обновлением формы

This commit is contained in:
DwCay
2023-04-21 18:05:01 +03:00
parent 50409bbd95
commit 75402fb209
6 changed files with 54 additions and 53 deletions

View File

@@ -1,5 +1,6 @@
<template lang="pug">
button.base-button.text-base(
type="button"
:disabled="disabled",
:class="{'rounded': rounded, 'outlined': outlined, 'outlined-red': outlinedRed, 'secondary': secondary, 'confirm': confirm, 'added': added, 'added-border-none': addedBorderNone}"
:style="{height: size + 'px', minWidth: size + 'px'}"
@@ -80,6 +81,8 @@ export default {
&:disabled, &[disabled]
background-color: var(--btn-blue-color-disabled)
border: 1px solid var(--btn-blue-color-disabled)
&:focus
outline: 0
.rounded
padding: 0
border-radius: 50%

View File

@@ -66,10 +66,12 @@ export default {
<style lang="sass" scoped>
.avatar-wrapper
width: 400px
height: 400px
min-width: 400px
min-height: 400px
border-radius: 50%
.avatar
min-width: 400px
min-height: 400px
height: 100%
border-radius: 50%
</style>