i actually like it....sidebar with messenger feel and rest of canvas with discord feel

This commit is contained in:
talksik
2022-05-17 05:34:26 -05:00
parent d1a8ca2909
commit 747447137c
6 changed files with 191 additions and 163 deletions
+7 -7
View File
@@ -3,26 +3,26 @@
// SINCE IT's NOT A NODE PROCESS
enum Channels {
ACTIVATE_LOG_IN = "ACTIVATE_LOG_IN",
GOOGLE_AUTH_TOKENS = "GOOGLE_AUTH_TOKENS",
RESIZE_WINDOW = "RESIZE_WINDOW",
ON_WINDOW_BLUR = "ON_WINDOW_BLUR",
ACTIVATE_LOG_IN = 'ACTIVATE_LOG_IN',
GOOGLE_AUTH_TOKENS = 'GOOGLE_AUTH_TOKENS',
RESIZE_WINDOW = 'RESIZE_WINDOW',
ON_WINDOW_BLUR = 'ON_WINDOW_BLUR',
}
export enum STORE_ITEMS {
AUTH_SESSION_JWT = "AUTH_SESSION_JWT",
AUTH_SESSION_JWT = 'AUTH_SESSION_JWT',
}
export type Dimensions = { height: number; width: number };
export interface DimensionChangeRequest {
setAlwaysOnTop: boolean;
setPosition?: "topRight" | "center";
setPosition?: 'topRight' | 'center';
dimensions: Dimensions;
addDimensions: boolean;
}
export const DEFAULT_APP_PRESET: Dimensions = { height: 875, width: 1210 };
export const DEFAULT_APP_PRESET: Dimensions = { height: 750, width: 1210 };
export const OVERLAY_ONLY_INITIAL_PRESET: Dimensions = {
height: 50,