Skip to content

Commit ac49edc

Browse files
Merge pull request #73 from testsigmahq/dev
Dev to main [28 Oct]
2 parents 4d537b9 + 8c8a4b1 commit ac49edc

2 files changed

Lines changed: 43 additions & 1 deletion

File tree

src/templates/page.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default ({ data, pageContext }) => {
7373
</div>
7474

7575
</main>
76-
<aside className="w-1/5">
76+
<aside className="w-1/5 bg-white">
7777
<hr className="d-block lg:hidden" />
7878
<div className="top-0 top-1 border-l pl-4 py-16 sticky">
7979
<div className="edit-button">

src/templates/page.scss

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -660,4 +660,46 @@ code[class*="language-"] {
660660
@media only screen and (max-width: 767px) {
661661
@apply px-8;
662662
}
663+
}
664+
665+
table{
666+
thead, tbody{
667+
@apply w-full;
668+
tr{
669+
td, th{
670+
word-wrap: break-word;
671+
li{
672+
@apply break-all w-full;
673+
}
674+
}
675+
}
676+
}
677+
}
678+
679+
// Cookie banner
680+
#hs-banner-parent{
681+
.hs-cookie-notification-position-bottom{
682+
width: calc(min(28em, 100%));
683+
left: 14%;
684+
@media only screen and (max-width: 767px) {
685+
left: 3%;
686+
width: 95%;
687+
}
688+
@media only screen and (min-width:768px) and (max-width: 1023px) {
689+
left: 20%;
690+
width: 35%;
691+
}
692+
#hs-eu-cookie-confirmation-inner{
693+
@apply p-8;
694+
#hs-eu-policy-wording{
695+
@apply mr-0 mb-4;
696+
}
697+
#hs-eu-cookie-confirmation-buttons-area{
698+
@apply justify-center mr-0;
699+
#hs-eu-decline-button{
700+
@apply hidden;
701+
}
702+
}
703+
}
704+
}
663705
}

0 commit comments

Comments
 (0)