Skip to content

Commit

Permalink
fix: set !important on some CSS properties to fix sidebar not collaps…
Browse files Browse the repository at this point in the history
…ing on Edge Dev
  • Loading branch information
patrickxchong committed Feb 18, 2021
1 parent 662d9d6 commit a7a889b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions hide-discord-sidebar.css
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ body.hide-dis-bar #hds-btn {

body.hide-dis-bar .sidebar-2K8pFh {
transition: all 0.1s ease 0.1s;
width: 0;
padding-left: 3.5vmin;
width: 0 !important;
padding-left: 3.5vmin !important;
}
body.hide-dis-bar .sidebar-2K8pFh:hover {
width: 240px;
padding-left: 0;
width: 240px !important;
padding-left: 0 !important;
}

body.hide-dis-bar .sidebar-2K8pFh > * {
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "Hide Discord Sidebar",
"short_name": "Hide Dis Bar",
"version": "2.13",
"version": "2.14",
"description": "Installs an unfolding sidebar for Discord channels and a button that hides/shows the Discord server list.",
"manifest_version": 2,
"permissions": ["*://*.discord.com/*", "storage", "declarativeContent"],
Expand Down

0 comments on commit a7a889b

Please sign in to comment.