Skip to content
Snippets Groups Projects
Unverified Commit 8629fb48 authored by Anton Georgiev's avatar Anton Georgiev Committed by GitHub
Browse files

Reduce the width of shared notes default width

.. to match the default width of chat module. Closes #6529
parent fa0c67b6
No related branches found
No related tags found
No related merge requests found
......@@ -41,8 +41,8 @@ const USERLIST_MAX_WIDTH_PX = 240;
const CHAT_MIN_WIDTH = 150;
const CHAT_MAX_WIDTH = 350;
// I like big notes and I can not lie
const NOTE_MIN_WIDTH = 400;
// Variables for resizing shared notes.
const NOTE_MIN_WIDTH = 340;
const NOTE_MAX_WIDTH = 800;
class PanelManager extends Component {
......@@ -59,7 +59,7 @@ class PanelManager extends Component {
this.state = {
chatWidth: 340,
userlistWidth: 180,
noteWidth: 400,
noteWidth: 340,
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment