16 lines
306 B
CSS
16 lines
306 B
CSS
#post-toolbar {
|
|
@apply max-w-screen-2xl mx-auto;
|
|
|
|
&:has(.toolbar-actions) {
|
|
@apply mb-24 md:mb-0;
|
|
}
|
|
}
|
|
.toolbar-actions {
|
|
@apply flex items-center gap-3 ml-auto;
|
|
|
|
@media screen and (max-width: 1024px) {
|
|
@apply absolute left-0 translate-y-full pt-2;
|
|
bottom: -20px;
|
|
}
|
|
}
|