Background gradients, migrate from CSS to SCSS, remove !important

This commit is contained in:
Maksim Eltyshev
2020-05-29 19:31:19 +05:00
parent 8534ed292c
commit 5bfff3865f
312 changed files with 4295 additions and 2989 deletions
+35
View File
@@ -0,0 +1,35 @@
import router from './router';
import socket from './socket';
import login from './login';
import modal from './modal';
import user from './user';
import project from './project';
import projectMembership from './project-membership';
import board from './board';
import list from './list';
import label from './label';
import card from './card';
import task from './task';
import attachment from './attachment';
import actions from './actions';
import commentAction from './comment-action';
import notification from './notification';
export default [
router,
socket,
login,
modal,
user,
project,
projectMembership,
board,
list,
label,
card,
task,
attachment,
actions,
commentAction,
notification,
];