X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/eb2eb95bfbfe8c777c4192ea434a0e999edf3a51..a94e848fd865f0a887850e4858dab64c426b10db:/src/wolnelektury/static/2022/styles/base/_global.scss?ds=sidebyside

diff --git a/src/wolnelektury/static/2022/styles/base/_global.scss b/src/wolnelektury/static/2022/styles/base/_global.scss
index 0513cc0fe..d81a0af56 100644
--- a/src/wolnelektury/static/2022/styles/base/_global.scss
+++ b/src/wolnelektury/static/2022/styles/base/_global.scss
@@ -3,7 +3,7 @@
 ------------------------------ */
 
 *, *:after, *:before {
-	box-sizing: border-box;
+  box-sizing: border-box;
 }
 
 :focus {
@@ -17,10 +17,15 @@ body {
 }
 
 body {
-	color: $color-black;
-	background-color: $color-white;
+  color: $color-black;
+  background-color: $color-white;
   overflow-x: hidden;
 
+  &.popup-open {
+    overflow-y: hidden;
+    height: 100vh;
+  }
+
   &.using-mouse {
     *:focus {
       outline: 0 !important;
@@ -38,3 +43,11 @@ body {
   align-items: center;
   justify-content: center;
 }
+
+
+a {
+    color: $color-primary;
+    &:hover {
+        text-decoration: underline;
+    }
+}