Make toolbar wrap #1831

This commit is contained in:
DianaXWiki 2025-03-27 17:12:39 +02:00 committed by yflory
parent a3552a9250
commit c010cfdf2a

View File

@ -64,7 +64,10 @@
}
.cp-markdown-toolbar {
height: @toolbar_line-height;
min-height: @toolbar_line-height;
height: auto;
display: flex;
flex-wrap: wrap;
background-color: @cp_toolbar-bg;
color: @cp_toolbar-fg;
display: none;
@ -85,6 +88,12 @@
button:nth-of-type(1) {
margin-left: 0.3rem;
}
@media screen and (max-width: @browser_media-medium-screen) {
button:nth-of-type(1) {
margin-left: 0;
}
}
}
.cp-toolbar-container {