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: 🐛 fixes the truncated cookie banner for non-en languages #7669

Merged
Merged
Changes from 4 commits
Commits
Show all changes
15 commits
Select commit Hold shift + click to select a range
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 @@ -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;
}
}