Skip to content

Instantly share code, notes, and snippets.

@book000
Last active May 19, 2023 07:23
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 book000/894207763314aefc0ac0e7f6ed3dc857 to your computer and use it in GitHub Desktop.
Save book000/894207763314aefc0ac0e7f6ed3dc857 to your computer and use it in GitHub Desktop.
Bitwardenでフルサイズ表示する(プレミアムへの広告も消す)
/* ==UserStyle==
@name Full size display on Bitwarden
@namespace tomacheese.com
@version 1.0.1
@updateURL https://gist.github.com/book000/894207763314aefc0ac0e7f6ed3dc857/raw/bitwarden-full-width.user.css
@description Bitwardenでフルサイズ表示する(プレミアムへの広告も消す)
@author Tomachi (book000)
==/UserStyle== */
@-moz-document domain("vault.bitwarden.com") {
.container {
width: 100% !important;
}
div.col-3:has(a[routerlink="/settings/subscription/premium"]) {
display: none !important;
}
div.col-6:has(app-vault-header) {
flex: 0 0 75% !important;
max-width: 75% !important;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment