Skip to content

Commit

Permalink
Fix variable declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
infloent committed Aug 9, 2024
1 parent 59cbd45 commit 40f2005
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions styles/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@
}

@media screen and (max-width: 768px) {
body {
--max-width: 100%
:root {
--max-width: 100%;
}
}

* {
box-sizing: border-box;
Expand Down Expand Up @@ -114,7 +115,7 @@ head:has(meta[name='footer'][content='false' i]) + body > footer {
display: none;
}

/* Use :where() to give lower specificity in order to not overwrite any display option set on the web component tag */
/* Use :where() to give lower specificity in order to not overwrite any display option set on the web component tag */
:where([raqnWebComponent]) {
display: block;
}
Expand Down

0 comments on commit 40f2005

Please sign in to comment.