More standardization color changes

This commit is contained in:
Alejandro Celaya 2020-12-12 16:55:01 +01:00
parent 7f7473c348
commit a013d40bf1
5 changed files with 8 additions and 12 deletions

View file

@ -48,7 +48,7 @@ $asideMenuMobileWidth: 280px;
}
.aside-menu__item:hover {
background-color: $lightHoverColor;
background-color: $lightColor;
}
.aside-menu__item--selected {

View file

@ -6,7 +6,7 @@ html,
body,
#root {
height: 100%;
background: #f5f6fe;
background: $lightColor;
}
* {
@ -44,6 +44,10 @@ body,
background-color: $mainColor;
}
.table-hover tbody tr:hover {
background-color: $lightColor;
}
.react-datepicker__input-container,
.react-datepicker-wrapper {
display: block !important;

View file

@ -1,7 +0,0 @@
@import '../utils/base';
.date-range-row__date-input {
@media (max-width: $smMax) {
margin-top: .5rem;
}
}

View file

@ -1,6 +1,5 @@
import moment from 'moment';
import DateInput from './DateInput';
import './DateRangeRow.scss';
interface DateRangeRowProps {
startDate?: moment.Moment | null;
@ -26,7 +25,7 @@ const DateRangeRow = (
</div>
<div className="col-md-6">
<DateInput
className="date-range-row__date-input"
className="mt-2 mt-md-0"
selected={endDate}
placeholderText="Until"
isClearable

View file

@ -10,7 +10,7 @@ $xlgMin: 1200px;
// Colors
$mainColor: #4696e5;
$lightHoverColor: #eeeeee;
$lightColor: #f5f6fe;
$lightGrey: #dddddd;
$dangerColor: #dc3545;
$mediumGrey: #dee2e6;