Skip to content

Commit

Permalink
fix: 🐛 fixes the truncated cookie banner for non-en languages (binary…
Browse files Browse the repository at this point in the history
…-com#7669)

* fix: 🐛 fixes the truncateed cookie banner for non-en langs

* fix: 🐛 fixes the text out of button bug in cookie banner

---------

Co-authored-by: Jim Daniels Wasswa <104334373+jim-deriv@users.noreply.github.com>
  • Loading branch information
2 people authored and mahdiyeh-deriv committed Mar 2, 2023
1 parent 5b67070 commit 961abb4
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
padding: 2.8rem 0;
bottom: 0;
width: 100%;
height: 152px;
height: fit-content;
text-align: center;
transition: top 0.3s ease-in-out;
z-index: 1000;
Expand Down Expand Up @@ -46,7 +46,6 @@
&__btn-dont-accept:hover,
&__btn-accept,
&__btn-accept:hover {
display: inline-block;
margin: 20px auto 0;
height: 40px;
border-width: 2px;
Expand All @@ -63,10 +62,10 @@
}
&__btn-dont-accept,
&__btn-dont-accept:hover {
width: 116px;
width: fit-content;
margin-right: 8px;
}
&__btn-accept {
width: 78px;
width: fit-content;
}
}

0 comments on commit 961abb4

Please sign in to comment.