umami/components/WebsiteChart.module.css

28 lines
387 B
CSS
Raw Normal View History

2020-07-30 08:25:52 +02:00
.container {
display: flex;
flex-direction: column;
}
.title {
font-size: 24px;
line-height: 60px;
font-weight: 600;
}
2020-07-30 10:08:21 +02:00
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 10px;
}
2020-08-02 06:20:52 +02:00
.sticky {
position: fixed;
top: 0;
margin: auto;
background: #fff;
padding: 10px 0;
border-bottom: 1px solid #e1e1e1;
z-index: 1;
}