Skip to content

Commit

Permalink
feat: remove bottom padding
Browse files Browse the repository at this point in the history
  • Loading branch information
hroth1994 committed Dec 4, 2024
1 parent 1b5781e commit 3254f7a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions es-vue-base/src/lib-components/EsNavBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -122,10 +122,10 @@
class="nav-search-bar-desktop nav-item top-header mx-0 justify-content-center"
style="display: none">
<div class="row w-100">
<es-search-bar id="searchBarDesktop" class="mb-0">
<es-search-bar id="searchBarDesktop">
<template #close>
<es-button
class="order-2 nav-button mb-100 nav-search-close-desktop ml-50"
class="order-2 nav-button nav-search-close-desktop ml-50"
aria-label="Close search bar"
variant="link">
<icon-x />
Expand Down
4 changes: 2 additions & 2 deletions es-vue-base/src/lib-components/EsSearchBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
:id="id"
v-model="searchText"
aria-label="Search bar"
class="w-50 flex-grow-1"
class="w-50 flex-grow-1 mb-lg-0"
label-sr-only
name="query"
:placeholder="placeholder"
Expand All @@ -23,7 +23,7 @@
</template>
</es-form-input>
<es-button
class="ml-50 mb-100"
class="ml-50 mb-100 mb-lg-0"
:disabled="!searchText"
type="submit"
:value="buttonText">
Expand Down

0 comments on commit 3254f7a

Please sign in to comment.