38 lines
No EOL
610 B
CSS
38 lines
No EOL
610 B
CSS
|
|
.userEvent {
|
|
border-radius: 3px;
|
|
background-color: rgba(0, 118, 255, 0.05);
|
|
font-family: 'Menlo', 'monaco', 'consolas', monospace;
|
|
padding: 8px 10px;
|
|
margin: 3px 0;
|
|
|
|
&.modalTrigger {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.infoWrapper {
|
|
overflow: hidden;
|
|
display: flex;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
.title {
|
|
display: block;
|
|
color: $gray-dark;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.message {
|
|
/* padding-left: 26px; */
|
|
/* padding-top: 10px; */
|
|
font-size: 13px;
|
|
overflow-x: auto;
|
|
&::-webkit-scrollbar {
|
|
height: 1px;
|
|
}
|
|
} |