Files
ontime/client/src/features/editors/list/List.module.css
T
cv 6ae0755696 cleanup
- style tweaks
- container follows cursor
2021-05-20 13:42:53 +02:00

35 lines
505 B
CSS

.eventContainer {
margin-top: 1em;
display: flex;
flex-direction: column;
background-color: rgba(0, 0, 0, 0.05);
border: 1px solid rgba(0, 0, 0, 0.05);
border-radius: 4px;
padding: 8px;
overflow-y: scroll;
height: 73vh;
}
.list {
display: flex;
flex-direction: column;
}
.empty {
opacity: 0.3;
align-self: center;
}
.cursor {
width: 100%;
background: linear-gradient(
180deg,
#ff7597 2%,
#0001 3%,
#0001 97%,
#ff7597 98%
);
border-radius: 14px;
}