repos / neovimcraft

website that makes it easy to find neovim plugins
git clone https://github.com/neurosnap/neovimcraft.git

commit
bd6e2b9
parent
5bf3e06
author
Eric Bower
date
2021-07-20 04:03:58 +0000 UTC
mobile fixes
3 files changed,  +8, -6
M src/lib/plugin.svelte
+2, -2
 1@@ -39,7 +39,7 @@
 2     display: flex;
 3     flex-direction: column;
 4     padding: 15px 5px;
 5-    height: 140px;
 6+    height: 170px;
 7     width: 100%;
 8     border-bottom: 1px solid var(--primary-color);
 9   }
10@@ -80,7 +80,7 @@
11 
12   @media only screen and (max-width: 700px) {
13     .container {
14-      height: 160px;
15+      padding: 0;
16     }
17   }
18 </style>
M src/routes/index.svelte
+3, -3
 1@@ -222,11 +222,11 @@
 2 
 3   @media only screen and (max-width: 700px) {
 4     .container {
 5-      grid-template-columns: 1fr;
 6-      padding: 0 10px;
 7+      grid-template-columns: 95%;
 8+      justify-content: center;
 9     }
10 
11-    #logo,
12+    .intro,
13     .sidebar {
14       display: none;
15     }
M static/reset.css
+3, -1
1@@ -1,4 +1,6 @@
2-* {box-sizing: border-box}
3+*, *::before, *::after {
4+  box-sizing: border-box;
5+}
6 
7 body { margin: 0 }
8