aboutsummaryrefslogtreecommitdiff
path: root/src/App.scss
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-01 22:13:51 +0530
committerVidhu Kant Sharma <vidhukant@vidhukant.xyz>2022-10-01 22:13:51 +0530
commite5c1454c091cb4101664d1bfa0e766ab37e9879a (patch)
tree7f7c8424b4f14f42758e951476ef252660ddfef4 /src/App.scss
parent8c01e16a8336a91659db7bf73ffe94077f90e25b (diff)
created a navbar
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;
+}