[WIP] Добавил модальное окно выбора услуг

This commit is contained in:
megavrilinvv
2023-07-31 17:14:00 +03:00
parent d0c1cccd10
commit 64c246a5e3
4 changed files with 265 additions and 8 deletions

View File

@@ -46,6 +46,11 @@ export default {
height: "48px",
"min-height": "48px",
};
if (this.size === "S")
return {
height: "32px",
"min-height": "32px",
};
return {
height: "40px",
"min-height": "40px",
@@ -116,6 +121,24 @@ export default {
background-color: var(--btn-mini-color-active)
color: var(--bg-status-green)
.grey
color: var(--font-dark-blue-color)
border: 1.5px solid var(--gray-secondary)
background-color: var(--gray-thirdly)
font-weight: 500
font-size: 14px
line-height: 19px
&:hover
background-color: var(--btn-blue-sec-color-hover)
&:active
background-color: var(--btn-blue-sec-color-active)
&:disabled, &[disabled]
opacity: 1 !important
color: var(--btn-blue-sec-color-disabled)
background-color: white
border: 1.5px solid var(--btn-blue-sec-border-color-disabled)
.q-btn :deep(.q-focus-helper)
display: none
.q-btn :deep(.q-ripple)