mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-23 02:36:05 +00:00
18 lines
489 B
TypeScript
18 lines
489 B
TypeScript
export const BASE = 'http://localhost:4200';
|
|
export const WORK_VIEW_URL = `${BASE}/`;
|
|
|
|
const ADD_TASK_GLOBAL_SEL = 'add-task-bar.global input';
|
|
const READY_TO_WORK_BTN = '.ready-to-work-btn';
|
|
const ROUTER_WRAPPER = '.route-wrapper';
|
|
const SIDENAV = 'side-nav';
|
|
const EXPAND_TAG_BTN = `${SIDENAV} .tags .expand-btn`;
|
|
const TAGS = `${SIDENAV} section.tags`;
|
|
|
|
export const cssSelectors = {
|
|
ADD_TASK_GLOBAL_SEL,
|
|
EXPAND_TAG_BTN,
|
|
READY_TO_WORK_BTN,
|
|
ROUTER_WRAPPER,
|
|
SIDENAV,
|
|
TAGS,
|
|
};
|