-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FIX: bigger-inbox and theme versioning
- Loading branch information
1 parent
2e712fd
commit 85b2c9c
Showing
3 changed files
with
32 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
/** | ||
* @name Better Image Embeds | ||
* @author GreenMan36#0633 | ||
* @authorLink https://github.com/GreenMan36 | ||
* @version 11.12.23a | ||
* @description A small snippet that makes the inbox bigger so you see more messages at once. | ||
*/ | ||
|
||
/* | ||
(C) GreenMan36#0633 | ||
*/ | ||
|
||
/* snippets don't show their version in the settings */ | ||
|
||
/* resize inbox */ | ||
div[class*="recentMentionsPopout__"] { | ||
width: 100%; | ||
height: 100%; | ||
min-height: 80vh; | ||
min-width: 50vw; | ||
transition: all 0.5s ease-out; | ||
transition-property: max-height, max-width, width, height; | ||
} |