44 lines
752 B
CSS
44 lines
752 B
CSS
.notificationCard {
|
|
padding: 1.25rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.75rem;
|
|
border-bottom: 1px solid rgba(0, 0, 0, 0.08);
|
|
transition: background 0.2s ease;
|
|
}
|
|
|
|
.cardHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
.timeTag {
|
|
color: #019AFF;
|
|
letter-spacing: 0.2px;
|
|
}
|
|
|
|
.message {
|
|
margin: 0;
|
|
font-size: 1.1rem;
|
|
line-height: 1.5;
|
|
color: #2c3e50;
|
|
font-weight: 400;
|
|
}
|
|
|
|
.closeIconButton {
|
|
background: none;
|
|
border: none;
|
|
width: 28px;
|
|
height: 28px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
cursor: pointer;
|
|
font-size: 1.1rem;
|
|
color: #2c3e50;
|
|
}
|
|
|
|
.closeIconButton:hover {
|
|
color: #cc0000;
|
|
} |