From 9fdd4f2f4a6f5ecdf8ed9b5359060fe84fabab0a Mon Sep 17 00:00:00 2001
From: Chip Senkbeil <chip.senkbeil@gmail.com>
Date: Tue, 03 Jul 2018 20:14:04 +0000
Subject: [PATCH] Updated style to transform name to ~ on smaller screens (#45)

---
 static/less/style.less |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/static/less/style.less b/static/less/style.less
index 97db125..fe9811a 100644
--- a/static/less/style.less
+++ b/static/less/style.less
@@ -198,6 +198,19 @@
   }
 }
 
+@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
+  a.navigation-title {
+    font-size: 0rem;
+
+    &::after {
+      content: '~';
+      font-size: 2.4rem;
+      text-align: center;
+      margin-left: -1.4rem;
+    }
+  }
+}
+
 .content {
   flex: 1;
   margin-top: 1.6rem;

--
Gitblit v1.10.0