umami/components/WebsiteChart.module.css

27 lines
398 B
CSS
Raw Normal View History

2020-07-30 08:25:52 +02:00
.container {
display: flex;
flex-direction: column;
}
.title {
2020-08-06 04:04:02 +02:00
font-size: var(--font-size-large);
2020-07-30 08:25:52 +02:00
line-height: 60px;
font-weight: 600;
}
2020-07-30 10:08:21 +02:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
2020-08-04 03:12:28 +02:00
padding: 10px 0;
2020-07-30 10:08:21 +02:00
}
2020-08-02 06:20:52 +02:00
.sticky {
position: fixed;
top: 0;
margin: auto;
2020-08-06 04:04:02 +02:00
background: var(--gray50);
border-bottom: 1px solid var(--gray300);
2020-08-04 03:12:28 +02:00
z-index: 2;
2020-08-02 06:20:52 +02:00
}