openreplay/frontend/app/components/Header/alertItem.module.css
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

31 lines
No EOL
477 B
CSS

.alertItem {
padding: 10px 20px;
border-bottom: solid thin $gray-light;
position: relative;
& .title {
font-size: 16px;
font-weight: 500;
margin-bottom: 5px;
}
& .period {
color: $gray-medium;
font-size: 12px;
}
& .actions {
position: absolute;
display: flex;
align-items: center;
right: 20px;
top: 0;
bottom: 0;
& > span {
margin-left: 12px;
cursor: pointer;
fill: $gray-medium;
}
}
}