INFRA-2874 | lint fix

This commit is contained in:
dhruvjoshi
2024-02-29 19:21:40 +05:30
parent 88d01fcf1c
commit c85806f7d9
5 changed files with 30 additions and 30 deletions

View File

@@ -1,21 +1,21 @@
.footer-wrapper {
display: flex;
justify-content: flex-end;
margin-top: 32px;
.remove-button {
background-color: var(--navi-color-red-base);
height: 36px;
width: 77px;
color: var(--navi-color-gray-bg-primary);
}
.cancel-button {
background: var(--navi-color-gray-bg-primary);
height: 36px;
width: 77px;
color: var(--navi-color-gray-c2);
margin-right: 12px;
border: 1px solid var(--navi-color-gray-border);
border-radius: 6px;
margin-right: 16px;
}
}
display: flex;
justify-content: flex-end;
margin-top: 32px;
.remove-button {
background-color: var(--navi-color-red-base);
height: 36px;
width: 77px;
color: var(--navi-color-gray-bg-primary);
}
.cancel-button {
background: var(--navi-color-gray-bg-primary);
height: 36px;
width: 77px;
color: var(--navi-color-gray-c2);
margin-right: 12px;
border: 1px solid var(--navi-color-gray-border);
border-radius: 6px;
margin-right: 16px;
}
}

View File

@@ -1,7 +1,7 @@
.auto-complete-container{
> div >div {
span{
color: var(--blue-blue_base) !important;
}
.auto-complete-container {
> div > div {
span {
color: var(--blue-blue_base) !important;
}
}
}
}

View File

@@ -104,14 +104,14 @@
margin-top: 11px;
padding-right: 1px;
border-radius: 8px 0px 0px 8px !important;
div {
div {
color: var(--grayscale-2) !important;
}
:first-child {
border-radius: 8px 0px 0px 8px;
}
}
.dropdown{
.dropdown {
div {
color: var(--grayscale-2) !important;
}

View File

@@ -32,7 +32,7 @@ const useTeamApis = (): useTeamApiProps => {
const finalSlackData = emailIds.includes(',')
? emailIds.split(',').map(item => item?.trim())
: [emailIds];
ApiService.post(endPoint, {
id: teamId,
members: {

View File

@@ -15,5 +15,5 @@
--grayscale-cold-1: #000f1d;
--grayscale-cold-2: #404b56;
--grayscale-cold-3: #8c9399;
--blue-blue_base: #0276FE;
--blue-blue_base: #0276fe;
}