profile refactor

This commit is contained in:
2026-07-01 16:42:37 +03:00
parent 8789963a7b
commit 66fdbdd964
23 changed files with 377 additions and 244 deletions

View File

@@ -4,9 +4,9 @@
right: 24px;
z-index: 1000;
display: flex;
align-items: center;
align-items: flex-start;
gap: 12px;
padding: 16px 18px;
padding: 16px 40px 16px 18px;
min-width: 280px;
max-width: 360px;
border-radius: 12px;
@@ -21,6 +21,12 @@
gap: 12px;
}
.content {
display: flex;
flex-direction: column;
gap: 2px;
}
.notification.closing {
animation: slideOut 0.25s cubic-bezier(0.55, 0, 1, 0.45) forwards;
}
@@ -82,6 +88,14 @@
color: #fff;
}
.title {
font-size: 14px;
font-weight: 700;
color: var(--text-primary);
line-height: 1.4;
margin: 0;
}
.message {
flex: 1;
font-size: 14px;
@@ -91,6 +105,9 @@
}
.close {
position: absolute;
top: 10px;
right: 12px;
flex-shrink: 0;
background: none;
border: none;
@@ -99,7 +116,6 @@
cursor: pointer;
padding: 0;
line-height: 1;
margin-top: 2px;
transition: color 0.15s;
}