diff --git a/src/templates/page.scss b/src/templates/page.scss
index 58b24130..d7f3ff9d 100644
--- a/src/templates/page.scss
+++ b/src/templates/page.scss
@@ -641,4 +641,18 @@ code[class*="language-"] {
.fixed{
display: none;
+}
+
+table{
+ thead, tbody{
+ @apply w-full;
+ tr{
+ td, th{
+ word-wrap: break-word;
+ li{
+ @apply break-all w-full;
+ }
+ }
+ }
+ }
}
\ No newline at end of file
From 93207b2881cfa66a2ee3426bd58df5b928b72eb8 Mon Sep 17 00:00:00 2001
From: Santhoshkumar <117272529+Santhosh-testsigma@users.noreply.github.com>
Date: Thu, 26 Oct 2023 14:25:40 +0530
Subject: [PATCH 2/3] WEB-736 - Updated the cookie banner design on docs pages
---
src/templates/page.scss | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/src/templates/page.scss b/src/templates/page.scss
index d7f3ff9d..e0e8d3bf 100644
--- a/src/templates/page.scss
+++ b/src/templates/page.scss
@@ -655,4 +655,30 @@ table{
}
}
}
+}
+
+// Cookie banner
+#hs-banner-parent{
+ .hs-cookie-notification-position-bottom{
+ width: calc(min(25em, 100%));
+ @apply left-[12%];
+ @media only screen and (max-width: 767px) {
+ @apply left-[3%] w-[95%];
+ }
+ @media only screen and (min-width:768px) and (max-width: 1023px) {
+ @apply left-[20%] w-[35%];
+ }
+ #hs-eu-cookie-confirmation-inner{
+ @apply p-8;
+ #hs-eu-policy-wording{
+ @apply mr-0 mb-4;
+ }
+ #hs-eu-cookie-confirmation-buttons-area{
+ @apply justify-center mr-0;
+ #hs-eu-decline-button{
+ @apply hidden;
+ }
+ }
+ }
+ }
}
\ No newline at end of file
From 24a414485147c2f629e8dc07d7431386a3eec4cd Mon Sep 17 00:00:00 2001
From: Santhoshkumar <117272529+Santhosh-testsigma@users.noreply.github.com>
Date: Thu, 26 Oct 2023 14:48:31 +0530
Subject: [PATCH 3/3] build error fix
---
src/templates/page.scss | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/src/templates/page.scss b/src/templates/page.scss
index e0e8d3bf..fd5d6c8b 100644
--- a/src/templates/page.scss
+++ b/src/templates/page.scss
@@ -661,12 +661,14 @@ table{
#hs-banner-parent{
.hs-cookie-notification-position-bottom{
width: calc(min(25em, 100%));
- @apply left-[12%];
+ left: 12%;
@media only screen and (max-width: 767px) {
- @apply left-[3%] w-[95%];
+ left: 3%;
+ width: 95%;
}
@media only screen and (min-width:768px) and (max-width: 1023px) {
- @apply left-[20%] w-[35%];
+ left: 20%;
+ width: 35%;
}
#hs-eu-cookie-confirmation-inner{
@apply p-8;