39 lines
860 B
SCSS
39 lines
860 B
SCSS
@import './base/bootstrap.scss';
|
|
@import './base/bootstrap-extended.scss';
|
|
@import './base/colors.scss';
|
|
@import './base/components.scss';
|
|
|
|
// Themes
|
|
@import './base/themes/dark-layout.scss';
|
|
@import './base/themes/bordered-layout.scss';
|
|
@import './base/themes/semi-dark-layout.scss';
|
|
// @import './base/custom-rtl.scss';
|
|
|
|
// React Specific
|
|
@import 'react/index';
|
|
|
|
.todo-item{
|
|
margin-bottom: 10px !important;
|
|
}
|
|
|
|
.chat-content.task{
|
|
float: right;
|
|
background-image: linear-gradient(80deg,#7367f0,#9e95f5);
|
|
border-radius: 5px;
|
|
color: #fff;
|
|
padding: 6px;
|
|
margin-bottom: 15px;
|
|
}
|
|
.todo-title-wrapper:hover{
|
|
cursor: pointer;
|
|
background-color: #67dbf0;
|
|
border-radius: 2px;
|
|
}
|
|
.todo-title-wrapper.tasks{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.main-menu .navbar-header .navbar-brand .brand-logo img {
|
|
max-width: 130px !important;
|
|
}
|