scrapboxのtitleをnav barに固定するUserCSS
2024-04-18 15:41:07
/takkerで使っていたが、削除した
更新履歴
2021-05-05
13:56:40 private projectの鍵マークもnav barに固定されるようにした
2021-03-14
16:53:50 mobile端末でも固定されるようにした
類似のUserCSS
style.css@media screen {
.quick-launch .left-box {
position: fixed;
top: -2px;
left: 40px; /* brand-iconの幅に応じて変えてください */
z-index: 1000;
}
}
@media screen and (min-width: 768px) and (max-width: 991px) {
.quick-launch .left-box {
left: 55px;
}
}
@media screen and (min-width: 992px) and (max-width: 1260px) {
.quick-launch .left-box {
left: 70px;
}
}
@media screen and (min-width: 1261px) {
.quick-launch .left-box {
left: calc((100% - 1280px)/2 + 80px);
}
}