Skip to content

Commit

Permalink
changed acc to code rabbin
Browse files Browse the repository at this point in the history
  • Loading branch information
gurramkarthiknetha committed Dec 23, 2024
1 parent 82970a7 commit d62a4f6
Showing 1 changed file with 23 additions and 29 deletions.
52 changes: 23 additions & 29 deletions src/style/app.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
:root {
--brown-color: #555555;
--brand-primary: #31bb6b;
--dropdown-hover-color: #eff1f7;
--grey-bg-color: #eaebef;
--subtle-blue-grey: #7c9beb;
Expand Down Expand Up @@ -140,7 +141,8 @@
}

.noOutline:is(:hover, :focus, :active, :focus-visible, .show) {
outline: none !important;
outline: 2px solid var(--brand-primary);
outline-offset: 2px;
}

.closeButton {
Expand Down Expand Up @@ -657,7 +659,7 @@ hr {

.inputFieldPledge {
background-color: white;
box-shadow: 0 1px 1px #31bb6b;
box-shadow: 0 1px 1px var(--brand-color);
}

.dropdownPledge {
Expand Down Expand Up @@ -968,14 +970,14 @@ hr {
}
}

.list_box {
.listBox {
height: auto;
overflow-y: auto;
width: 100%;
}

.inputFields {
box-shadow: 0 1px 1px #31bb6b;
box-shadow: 0 1px 1px var(--brand-color);
}

.fundName {
Expand Down Expand Up @@ -1083,14 +1085,12 @@ input[type='radio']:checked + label {
width: 50%;
}

.greenregbtn {
margin-top: 1rem;
border: 1px solid var(--bs-gray-300);
box-shadow: 0 2px 2px var(--bs-gray-300);
padding: 10px 10px;
.baseBtn {
margin: 1rem 0 0;
border: 1px solid var(--border-color);
box-shadow: 0 2px 2px var(--shadow-color);
padding: 10px;
border-radius: 5px;
background-color: var(--bs-primary);
width: 100%;
font-size: 16px;
color: var(--bs-white);
outline: none;
Expand All @@ -1099,27 +1099,18 @@ input[type='radio']:checked + label {
transition:
transform 0.2s,
box-shadow 0.2s;
}

.greenregbtn {
composes: baseBtn;
background-color: #31bb6b;
width: 100%;
}

.manageBtn {
margin: 1rem 0 0;
margin-top: 15px;
border: 1px solid #e8e5e5;
box-shadow: 0 2px 2px #e8e5e5;
padding: 10px 10px;
border-radius: 5px;
font-size: 16px;
color: white;
outline: none;
font-weight: 600;
cursor: pointer;
composes: baseBtn;
width: 45%;
transition:
transform 0.2s,
box-shadow 0.2s;
}

.removeFilterIcon {
cursor: pointer;
}
Expand Down Expand Up @@ -1156,7 +1147,10 @@ input[type='radio']:checked + label {
}

.noOutline input:disabled {
-webkit-text-fill-color: black !important;
-webkit-text-fill-color: var(
--disabled-text-color,
rgba(0, 0, 0, 0.75)
) !important;
}

.noOutline textarea:disabled {
Expand All @@ -1170,10 +1164,10 @@ input[type='radio']:checked + label {

.dropdowns {
background-color: white;
border: 1px solid #31bb6b;
border: 1px solid var(--brand-primary);
position: relative;
display: inline-block;
color: #31bb6b;
color: var(--brand-primary);
}

/* Action Items Data Grid */
Expand Down

0 comments on commit d62a4f6

Please sign in to comment.