Updated dependencies

This commit is contained in:
Alejandro Celaya
2020-09-06 10:17:46 +02:00
parent 125b13e059
commit 58c9ef9b51
9 changed files with 2356 additions and 1536 deletions

View File

@@ -18,7 +18,7 @@ $asideMenuMobileWidth: 280px;
@media (min-width: $mdMin) {
padding: 30px 15px 15px;
border-right: 1px solid #eee;
border-right: 1px solid #eeeeee;
}
@media (max-width: $smMax) {
@@ -51,17 +51,17 @@ $asideMenuMobileWidth: 280px;
}
.aside-menu__item--selected {
color: #fff;
color: #ffffff;
background-color: $mainColor;
}
.aside-menu__item--selected:hover {
color: #fff;
color: #ffffff;
background-color: $mainColor;
}
.aside-menu__item--divider {
border-bottom: 1px solid #eee;
border-bottom: 1px solid #eeeeee;
margin: 20px 0;
}
@@ -74,7 +74,7 @@ $asideMenuMobileWidth: 280px;
}
.aside-menu__item--danger:hover {
color: #fff;
color: #ffffff;
background-color: $dangerColor;
}

View File

@@ -1,6 +1,6 @@
.react-tagsinput {
background-color: #fff;
border: 1px solid #ccc;
background-color: #ffffff;
border: 1px solid #cccccc;
border-radius: .25rem;
overflow: hidden;
min-height: 2.6rem;
@@ -22,7 +22,7 @@
margin: 0 5px 6px 0;
padding: 6px 8px;
line-height: 1;
color: #fff;
color: #ffffff;
}
.react-tagsinput-remove {
@@ -33,7 +33,7 @@
.react-tagsinput-tag span:before {
content: '\2715';
color: #fff;
color: #ffffff;
}
.react-tagsinput-input {

View File

@@ -25,7 +25,7 @@ body,
}
.badge-main {
color: #fff;
color: #ffffff;
background-color: $mainColor;
}

View File

@@ -2,6 +2,6 @@
margin-bottom: 0;
padding: 10px 15px;
font-size: 17.5px;
border-left: 5px solid #eee;
border-left: 5px solid #eeeeee;
background-color: #f9f9f9;
}

View File

@@ -3,7 +3,7 @@
}
.tag-card__header.tag-card__header {
background-color: #eee;
background-color: #eeeeee;
}
.tag-card__header.tag-card__header,

View File

@@ -10,7 +10,7 @@
}
.date-input-container__input:not(:disabled) {
background-color: #fff !important;
background-color: #ffffff !important;
}
.date-input-container__icon {
@@ -29,6 +29,6 @@
.react-datepicker__close-icon.react-datepicker__close-icon:after {
right: .75rem;
line-height: 11px;
background-color: #333;
background-color: #333333;
font-size: 14px;
}

View File

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