Skip to content

Commit

Permalink
Removed HC form Dashboard.scss and added CSS color Variables (#1869)
Browse files Browse the repository at this point in the history
Josephalexantony-aot authored Feb 1, 2024
1 parent 1b84b2f commit fbad17a
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions forms-flow-web/src/components/Dashboard/dashboard.scss
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
@import "./../../assets/styles/themes.scss";

.dashboard {
margin-top: 10px;

& .line-hr {
border-top: 1px solid $light-blue;
border-top: 1px solid var(--color-primary-ltr);
}

& .card-counter {
@@ -13,17 +11,17 @@
transition: 1s;

& .white-box {
background: $white;
border: 1px solid $light-blue;
background: var(--color-white);
border: 1px solid var(--color-primary-ltr);
padding: 25px;
margin-bottom: 30px;
font-size: larger;
cursor: pointer;

&.active,
&:hover {
background-color: $dark-blue !important;
color: $white;
background-color: var(--color-primary-dkst) !important;
color: var(--color-white);

& .small-title {
font-size: 16px;
@@ -62,11 +60,11 @@

& .application-title {
margin-bottom: -5px;
color: $black;
color: var(--color-black);
}

& .dashboard-title {
color: $black;
color: var(--color-black);
}

& .dashboard-icon-style {
@@ -83,21 +81,21 @@
}

& .react-daterange-picker__wrapper {
color: $black;
color: var(--color-black);
padding: 5px;
border: 1px solid $black;
background: $white;
border: 1px solid var(--color-black);
background: var(--color-white);

& input {
color: #036;
color: var(--color-primary-dkst);
}

& select {
-webkit-appearance: none;
-moz-appearance: none;
text-indent: 1px;
text-overflow: "";
color: #036;
color: var(--color-primary-dkst);
}

& .react-daterange-picker__range-divider {
@@ -113,7 +111,7 @@
align-self: center;
flex-direction: row;
flex-wrap: wrap;
border: 1px solid $black;
border: 1px solid var(--color-black);
padding: 30px;
border-radius: 10px;

@@ -187,7 +185,7 @@
width: 80px;
height: 35px;
border-radius: 3px;
border-color: rgba(222, 226, 230);
border-color: var(--color-primary-ltst);
}


0 comments on commit fbad17a

Please sign in to comment.