ESC Portal Search Bar Height Help
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2024 04:27 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2024 09:55 PM
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
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-15-2024 10:20 PM
Thank you but this fix didn’t work ?