openreplay/frontend/app/components/Session_/Issues/issueListItem.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

21 lines
No EOL
346 B
CSS

.title {
max-width: 90%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.wrapper {
transition: all 0.4s;
padding: 8px 14px;
/* margin: 0 -14px; */
height: 70px;
background-color: white;
border-bottom: solid thin $gray-light;
&:hover {
background-color: $active-blue;
transition: all 0.2s;
}
}