final fix

This commit is contained in:
2025-08-27 21:02:40 +03:00
parent 6e5b89469f
commit 6880876942
18 changed files with 251 additions and 120 deletions

View File

@@ -1,4 +1,6 @@
.container {
:host {
display: block;
width: 100%;
min-height: 100vh;
margin: 0;
@@ -113,17 +115,53 @@
}
}
/* Application Card */
.application-card {
background: rgba(0, 0, 0, 0.4);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(15px);
border: 1px solid rgba(0, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
margin-bottom: 2rem;
.delete-button {
margin-left: 12px;
background: rgba(255, 68, 68, 0.1);
border: 1px solid #ff4444;
border-radius: 8px;
color: #ff4444;
cursor: pointer;
transition: all 0.3s ease;
flex-shrink: 0;
}
.delete-button:hover {
background: rgba(255, 68, 68, 0.2);
color: #ff6666;
box-shadow: 0 0 20px rgba(255, 68, 68, 0.4);
transform: translateY(-2px);
border-color: #ff6666;
}
.delete-button mat-icon {
font-size: 20px;
width: 20px;
height: 20px;
}
/* Application Card */
.application-card-container {
position: relative;
overflow-x: hidden;
border-radius: 16px;
min-height: 60rem;
.application-card {
position: absolute;
top: 0;
left: 0;
right: 0;
background: rgba(0, 0, 0, 0.4);
border-radius: 16px;
padding: 2rem;
backdrop-filter: blur(15px);
border: 1px solid rgba(0, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 255, 255, 0.1);
}
}
/* Profile Section */
.profile-section {
display: flex;
@@ -414,4 +452,5 @@
font-size: 0.95rem;
font-style: italic;
}
}
}