continue: add notification page styles

This commit is contained in:
smanylov
2026-03-31 13:47:27 +07:00
parent f31713a929
commit d40e3d563b
4 changed files with 179 additions and 59 deletions
+68 -5
View File
@@ -5054,14 +5054,21 @@
overflow-x: auto;
border-radius: 0.5rem;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
max-width: calc(100vw - var(--side-bar-width) - 60px);
@media (max-width: 440px) {
max-width: calc(100vw - var(--side-bar-width) - 30px);
}
}
&-header {
background-color: v.$bg-light;
padding: 20px 20px;
font-size: 18px;
font-weight: 600;
border-bottom: 1px solid v.$b-color-2;
background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
color: v.$white;
display: flex;
justify-content: space-between;
@@ -5076,15 +5083,22 @@
}
&-action {
display: flex;
gap: 10px;
.btn-primary {
/* background: v.$p-color; */
background: #2b7fff;
background: white;
color: black;
font-weight: 600;
font-size: 14px;
padding: 5px 20px;
box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
}
&-body {
padding: 0;
background: v.$white;
.notification {
&-item {
@@ -5098,6 +5112,57 @@
}
}
&-header {
display: flex;
justify-content: space-between;
align-items: center;
}
&-body {
flex-grow: 1;
}
&-title {
font-weight: 600;
font-size: 18px;
margin-bottom: 4px;
}
&-text {
color: v.$text-s;
margin-bottom: 4px;
}
&-status {
background: v.$b-color-2;
padding: 4px 8px;
border-radius: 12px;
font-size: 12px;
user-select: none;
}
&-footer {
display: flex;
justify-content: space-between;
align-items: center;
.btn-remove {
color: v.$white;
background: v.$status-new;
padding: 4px 18px;
&:hover {
background: #ff9100;
}
}
}
&-date {
color: v.$text-m;
font-size: 14px;
text-align: start;
}
&-check {
display: flex;
align-items: center;
@@ -5118,8 +5183,6 @@
}
}
}
&-text {}
}
}
}