Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix css distortion in grants sidebar #7705

Merged
merged 4 commits into from
Oct 28, 2020
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/grants/templates/grants/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
{% endif %}
<div id="grants-showcase" v-cloak>
<div class="row" style="max-width: 99vw">
<div class="col-12 col-lg-3 col-xl-2 pr-xl-0" id="sidebar_container">
<div class="col-12 col-lg-3 col-xl-2 pr-0" id="sidebar_container">
{% include 'grants/shared/sidebar_search.html' %}
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/grants/templates/grants/shared/sidebar_search.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
:set_type="setCurrentType" :idle_grants="idle_grants" :show_contributions="show_contributions"
:query_params="getQueryParams" :round_num="round_num" :featured="featured"
inline-template>
<div class="sidebar_search font-body pr-0 pl-4" >
<div class="sidebar_search font-body pr-0 pl-4 w-100">
<div class="search font-caption mb-4" style="width: 110%;">
<div class="search-area col-12">
<input @input="searchKeyword()" class="form__input form__input_lg" type="search" v-model="search" id="keyword" name="keyword" style="font-family: 'Font Awesome 5 Pro', 'Muli', sans-serif; font-weight: 900;" placeholder="&#xF002; Search Grant" />
Expand Down