CaraMcAvinchey / purrfect-sitters

A full-stack web application for a pet sitting service. Built with full CRUD operations using HTML, CSS, Django, Bootstrap and MySQL with Stripe as the payment system.
1 stars 2 forks source link

USER STORY: CONTACT #2

Open CaraMcAvinchey opened 1 year ago

CaraMcAvinchey commented 1 year ago

As a new user, I can easily find the contact information of Purrfect Sitters, so that I can reach out to them for more information.

Scenario: Given than I am on any page of the website When I scroll to the footer section Then I should see the contact information for Purrfect Sitters

CaraMcAvinchey commented 1 year ago

Testing footer section on mobile view:

Image

CaraMcAvinchey commented 1 year ago

Tested footer for any accessibility issues thus far, ensured all links are working.

Image

CaraMcAvinchey commented 1 year ago

Issue with footer floating and covering content on mobile view: Image

Fixed using custom CSS:

body {
    font-family: 'ABeeZee', sans-serif;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

footer {
    background-color: #2a2727;
    margin-top: auto;

}

Image