Improve styling of post controls

This commit is contained in:
arne 2025-11-18 19:58:01 +01:00
commit 27ec45b812

View file

@ -127,14 +127,31 @@
} }
.post .controls { .post .controls {
margin: 18px 0 0; margin: 24px 0 0;
padding: 0; padding: 0;
list-style-type: none; list-style-type: none;
display: flex;
} }
.post .controls .control-element { .post .controls .control-element a {
margin: .24rem; padding: 6px;
margin: 0 0 6px 6px;
background: #f5e6ab;
color: #444;
cursor: pointer;
text-decoration: none;
display: inline-block;
}
@media screen and (min-width: 640px) {
.post .controls {
display: flex;
justify-content: end
}
.post .controls .control-element a {
margin: 0 0 0 12px;
}
} }
code { code {