プロジェクトタイトルと戻るボタンを上部に固定するUserCSS(井戸端版)
https://gyazo.com/4e21e4b6555e7f6f982b74fe0a275a6e
code:style.css
@media (min-width: 1000px) {
/* PC版(長い方) */
div.left-box {
display: flex;
align-items: center;
position: fixed;
top: 0;
margin-left: 52px;
z-index: 1000;
flex-wrap: nowrap;
width: 212px;
}
div.quick-launch a.project-home {
/* 井戸端のUserCSSでの設定を上書きする */
position: relative;
left: 0;
}
}
@media (max-width: 768px) {
/* スマホ版 */
div.expandable-menu {
/* .expandable-menuが被らないようにずらす */
top: 40px;
max-width: 100%;
}
}