ESC Portal Search Bar Height Help

AlethaB
Kilo Contributor

I'm experiencing difficulty increasing the height of the search bar in the ESC portal. Can anyone provide guidance or support on how to adjust the search bar's height.

2 REPLIES 2

Bhavya11
Kilo Patron

Hi @AlethaB 

 

CTRL+ Right Click >> Instance in Page Editor >> use below css in css field. 

input {
border: 1px solid $border-tertiary;
height: 64px;// updated the size as per your requirement
box-shadow: none;
font-size: $sp-space--lg;
font-family: inherit;
color: $text-tertiary;
padding: $sp-space--md;
border-bottom-left-radius: $sp-space--sm;
border-top-left-radius: $sp-space--sm;

}

 

Please note while updating the input  css and update the button css heigh to same 

 

button {
border: 1px solid $border-tertiary;
box-shadow: none;
height: 64px; // updated same as the input css
border-bottom-right-radius: $sp-space--sm;
border-top-right-radius: $sp-space--sm;
color: #717171;
}

 

 

Thanks,

BK

AlethaB
Kilo Contributor

Thank you but this fix didn’t work ?