26 lines
361 B
CSS
26 lines
361 B
CSS
.container ul {
|
|
list-style: none;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.container ul li {
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
.container ul li::before {
|
|
content: "";
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
.postHeader {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: var(--gap);
|
|
align-items: center;
|
|
position: sticky;
|
|
top: 0;
|
|
z-index: 1;
|
|
background: inherit;
|
|
}
|