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

Adrienne / Refactored blocked user overlay css and advertiser page css #6097

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
Original file line number Diff line number Diff line change
Expand Up @@ -375,6 +375,10 @@
padding: 2.4rem;
border: 1px solid var(--general-hover);
border-radius: 0.8rem;

@include mobile {
border-radius: unset;
Copy link
Contributor Author

@adrienne-deriv adrienne-deriv Aug 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In design, advertiser page stats for responsive has no border radius, fixing this in case in the future QA comes back with this issue

Before

Screenshot 2022-08-04 at 11 07 32 AM

After

Screenshot 2022-08-04 at 11 08 55 AM

}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,12 @@
opacity: 0.9;
top: 0;
left: 0;
width: 94rem;
z-index: 1;
width: 100%;
z-index: 9999;

@include mobile {
border: none;
border-radius: unset;
width: 100%;
height: 100%;
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Parent &__wrapper already includes width: 100% and height: 100%, refactoring this since its basically duplicated code

flex-flow: column;
}

Expand Down