The consent pop up is not working very
The consent pop up is not working very good 🙃🙃🙃
5 Replies
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
I fixed it with custom css, but the default css settings have problem with a lot of text in the descriptions.
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View
.cf_modal {
width: 90vw;
max-height: 90vh;
}
.cf_consent-element p {
grid-row: 2;
grid-column: 2;
font-size: 0.875rem;
line-height: 1;
text-wrap: balance;
}
.cf_consent-buttons {
display: flex;
flex-flow: row wrap;
justify-content: flex-start;
align-items: center;
gap: 0.5rem;
max-width: 50em;
margin: calc(-1 * var(--padding));
margin-top: 0;
align-items: center;
justify-content: flex-end;
padding: 12px 18px;
padding-right: 12px;
background-color: transparent;
}
.cf_button {
background-color: #6d2931;
color: white;
font-size: 1em;
padding: 0.75rem 1.5rem; /* Updated padding */
flex-grow: 1;
cursor: pointer;
transition: background-color 200ms;
margin: 0px;
border-radius: 5rem;
line-height: 1;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
padding: 0.75rem 1.5rem;
}
.cf_button:hover {
background-color: #4e2e32;
}
.cf_consent-intro {
font-size: 0.875rem;
line-height: 1;
text-align: left;
text-wrap: balance;
}
@media (max-width: 400px) {
.cf_modal {
width: 90vw;
}
}
Unknown User•6mo ago
Message Not Public
Sign In & Join Server To View