1
0

Мелкие правки фронта

Улучшены окна подтверждений
This commit is contained in:
2026-01-16 10:22:32 +07:00
parent 3258fa9137
commit f856e68ea8

View File

@@ -121,8 +121,7 @@ const handleDiscard = () => {
.dialog-overlay {
position: fixed;
inset: 0;
background: rgba(0, 0, 0, 0.7);
backdrop-filter: blur(4px);
background: var(--bg-body);
display: flex;
align-items: center;
justify-content: center;
@@ -130,39 +129,44 @@ const handleDiscard = () => {
}
.dialog {
background: var(--bg-secondary);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
padding: 32px;
max-width: 420px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
width: 100%;
height: 100%;
padding: 24px;
}
.dialog h3 {
margin: 0 0 12px;
font-size: 20px;
margin: 0 0 16px;
font-size: 24px;
font-weight: 600;
color: var(--text-primary);
}
.dialog p {
margin: 0 0 24px;
font-size: 14px;
margin: 0 0 48px;
font-size: 16px;
color: var(--text-muted);
line-height: 1.5;
max-width: 320px;
}
.dialog-buttons {
display: flex;
flex-direction: column;
gap: 12px;
justify-content: center;
width: 100%;
max-width: 320px;
}
.dialog-buttons button {
padding: 10px 20px;
border-radius: 8px;
font-size: 14px;
width: 100%;
padding: 16px 24px;
border-radius: 12px;
font-size: 16px;
font-weight: 500;
cursor: pointer;
transition: all 0.2s ease;
@@ -223,8 +227,8 @@ const handleDiscard = () => {
.btn-loader {
display: inline-block;
width: 16px;
height: 16px;
width: 18px;
height: 18px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-top-color: currentColor;
border-radius: 50%;
@@ -240,12 +244,12 @@ const handleDiscard = () => {
/* Transition */
.dialog-enter-active,
.dialog-leave-active {
transition: all 0.2s ease;
transition: opacity 0.25s ease;
}
.dialog-enter-active .dialog,
.dialog-leave-active .dialog {
transition: transform 0.2s ease;
transition: transform 0.25s ease;
}
.dialog-enter-from,
@@ -253,8 +257,11 @@ const handleDiscard = () => {
opacity: 0;
}
.dialog-enter-from .dialog,
.dialog-enter-from .dialog {
transform: translateY(20px);
}
.dialog-leave-to .dialog {
transform: scale(0.95);
transform: translateY(-20px);
}
</style>