umami/src/app/(main)/reports/[reportId]/ReportHeader.module.css

37 lines
546 B
CSS
Raw Normal View History

.header {
display: grid;
2023-10-16 03:24:28 +00:00
grid-template-columns: 1fr min-content;
align-items: center;
grid-row: 1 / 2;
grid-column: 1 / 3;
margin: 20px 0 40px 0;
}
.title {
display: flex;
flex-direction: row;
2023-10-16 03:24:28 +00:00
align-items: center;
font-size: 24px;
font-weight: 700;
gap: 20px;
height: 60px;
}
.type {
font-size: 11px;
2023-10-16 03:24:28 +00:00
font-weight: 700;
text-transform: uppercase;
color: var(--base600);
2023-10-16 03:24:28 +00:00
}
.description {
color: var(--font-color300);
max-width: 500px;
height: 30px;
}
.actions {
display: flex;
align-items: center;
}