openreplay/frontend/app/components/Client/Sites/blockedIps.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

37 lines
No EOL
604 B
CSS

.wrapper {
width: 300px;
padding: 20px;
& label {
color: $gray-medium;
font-size: 12px;
}
}
.inputWrapper {
display: flex;
align-items: center;
justify-content: space-between;
}
.list {
margin-top: 20px;
display: none; /* TODO enable this once the API is Ready */
& .item {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: solid thin $gray-light;
padding: 8px 5px;
&:hover {
background-color: $active-blue;
& .actions {
opacity: 1;
}
}
& .actions {
opacity: 0;
}
}
}