Skip to content

Commit

Permalink
fix(WebexCreateSpace): remove extra space on top of search field and …
Browse files Browse the repository at this point in the history
…text alignment issue fixes
  • Loading branch information
harshrai-11 authored and kishorepmr committed Jun 10, 2022
1 parent b235fa6 commit 770f619
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
9 changes: 9 additions & 0 deletions src/components/WebexCreateSpace/WebexCreateSpace.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,13 @@ $C:#{$WEBEX_COMPONENTS_CLASS_PREFIX}-create-space;
display: flex;
color: var(--wxc-speaking-color);
}

.#{$WEBEX_COMPONENTS_CLASS_PREFIX}-input-field__input {
outline: none !important;
box-shadow: none !important;
}

.#{$WEBEX_COMPONENTS_CLASS_PREFIX}-options-list {
border-radius: 0;
}
}
11 changes: 6 additions & 5 deletions src/components/WebexSearchPeople/WebexSearchPeople.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@ $C:#{$WEBEX_COMPONENTS_CLASS_PREFIX}-search-people;

.#{$C} {
min-width: 300px;
max-width: 560px;
width: 460px;
max-width: 450px;
width: 450px;
color: var(--wxc-text-color);
margin-top: 20px;

.#{$C}__people-list-box {
background: var(--wxc-options-list--normal--background);
width: auto;
padding: 1.2rem 0 0 0;
max-height: 105px;
overflow-y: auto;
border: 0.0625rem solid #CCCCCC;
border-radius: 4px;
border-radius: 0.5rem;
margin-top: 8px;
stroke-width: 1px;
transition: box-shadow 0.15s ease-out;
text-align: left;

.#{$C}__people-added {
background: var(--wxc-primary-background);
Expand All @@ -29,7 +29,7 @@ $C:#{$WEBEX_COMPONENTS_CLASS_PREFIX}-search-people;
padding: 0 4px 0 1rem;
display: inline-flex;
align-items: center;
margin: 0 0.3rem 0.3rem 0;
margin: 0.3rem;

.#{$C}__people-added-content {
padding-right: 5px;
Expand Down Expand Up @@ -71,6 +71,7 @@ $C:#{$WEBEX_COMPONENTS_CLASS_PREFIX}-search-people;
padding: 5px;
border-bottom: 1px solid grey;
background: var(--wxc-options-list--normal--background);
text-align: left;
}

.#{$C}__search-error {
Expand Down

0 comments on commit 770f619

Please sign in to comment.