umami/src/app/(main)/websites/[websiteId]/sessions/[sessionId]/SessionData.module.css
2024-07-30 21:22:19 -07:00

39 lines
516 B
CSS

.data {
display: flex;
flex-direction: column;
gap: 20px;
width: 200px;
position: relative;
}
.header {
font-weight: bold;
}
.empty {
color: var(--font-color300);
text-align: center;
}
.label {
display: flex;
align-items: center;
justify-content: space-between;
}
.type {
font-size: 10px;
text-transform: uppercase;
padding: 0 6px;
border-radius: 4px;
border: 1px solid var(--base300);
}
.name {
color: var(--font-color200);
font-weight: bold;
}
.value {
margin: 5px 0;
}