mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-27 21:00:12 +01:00
28 lines
369 B
CSS
28 lines
369 B
CSS
.fields {
|
|
max-height: 300px;
|
|
overflow: auto;
|
|
}
|
|
|
|
.field {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
height: 30px;
|
|
cursor: pointer;
|
|
padding: 4px;
|
|
border-radius: var(--border-radius);
|
|
}
|
|
|
|
.field:hover {
|
|
background: var(--base75);
|
|
}
|
|
|
|
.key {
|
|
font-weight: 400;
|
|
}
|
|
|
|
.type {
|
|
color: var(--font-color300);
|
|
}
|