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

added the bg-white css selector to the sections of org/root per figma #485

Merged
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
# Ignore bundler config.
/.bundle

# Ignore bundle folder in vendor
/vendor/bundle/*

# Ignore all logfiles and tempfiles.
/log/*
/tmp/*
Expand Down
21 changes: 0 additions & 21 deletions app/views/devise/registrations/edit.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -65,27 +65,6 @@
</div> <!--col-->
</div> <!--row-->

<!--cancel my account section-->
<div class="row mt-5">
<div class="col-md-6 mx-auto">
<h4 class="mb-2">Unhappy?</h4>
<p>Type 'goodbye' below then click the button to permanently delete your account.</p>

<div data-controller="delete">
<input type="text" data-action="input->delete#showButton"
data-delete-target="input" class="form-control mt-2">

<%= button_to "Delete my account", registration_path(resource_name),
class: 'btn custom-btn-pink mt-3 mb-3',
data: { confirm: 'Are you sure?',
turbo: 'false',
delete_target: 'button' },
method: 'delete',
disabled: true %>
</div>
</div>
</div> <!--row-->

</div><!--container-->
</section>
<% end %>
Expand Down
4 changes: 2 additions & 2 deletions app/views/organizations/home/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@


<!-- HOW TO APPLY FOR ADOPTION -->
<section class="pt-5 pb-5" id="how_to_apply">
<section class="pt-5 pb-5 bg-white" id="how_to_apply">
<div class="container mb-md-5 mt-md-5">

<!--section heading-->
Expand Down Expand Up @@ -132,7 +132,7 @@
</section>

<!--PAGE HIGHLIGHTS-->
<section class="pt-5 pb-5" id="how_to_apply">
<section class="pt-5 pb-5 bg-white" id="how_to_apply">
<div class="container mb-md-5 mt-md-5">
<div class="row text-center">
<div class="col-md-4 p-3">
Expand Down
Loading