Skip to content

Instantly share code, notes, and snippets.

@nzws
Last active April 2, 2022 11:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nzws/e7de65b2cef56439599fc1ccf3817f1c to your computer and use it in GitHub Desktop.
Save nzws/e7de65b2cef56439599fc1ccf3817f1c to your computer and use it in GitHub Desktop.
/* ==UserStyle==
@name Skeb max size/sticky navbar
@namespace me.nzws.userstyle.skeb
@author nzws
@description 大きめディスプレイ使用時に横幅制限したり、一番上のナビバーを画面にくっつけるやつ
@version 1.0.1
==/UserStyle== */
@-moz-document domain("skeb.jp") {
#root {
max-width: 1600px;
margin: 0 auto;
}
.header {
position: sticky;
top: 0;
z-index: 9999;
}
.navbar {
border-radius: 0 0 4px 4px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment