aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
Diffstat (limited to 'src/App.scss')
-rw-r--r--src/App.scss11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/App.scss b/src/App.scss
index b4fc72f..6215663 100644
--- a/src/App.scss
+++ b/src/App.scss
@@ -35,7 +35,7 @@ main {
width: 100%;
max-width: 1500px;
margin: 0 auto;
- min-height: 100vh;
+ min-height: calc(100vh - 4rem);
padding: 0.7rem 0.5rem;
box-sizing: border-box;
}
@@ -49,3 +49,12 @@ a {
color: $linkColor;
text-decoration: none;
}
+
+::selection {
+ color: $fgColor;
+ background: $primaryAccentColor;
+}
+::-moz-selection {
+ color: $fgColor;
+ background: $primaryAccentColor;
+}