mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 01:35:17 +01:00
27 lines
364 B
CSS
27 lines
364 B
CSS
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.title {
|
|
font-size: 24px;
|
|
line-height: 60px;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.sticky {
|
|
position: fixed;
|
|
top: 0;
|
|
margin: auto;
|
|
background: #fff;
|
|
border-bottom: 1px solid #e1e1e1;
|
|
z-index: 2;
|
|
}
|