repos / neovimcraft

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

commit
dba7dc1
parent
d9aaa67
author
Krisan Alifari
date
2021-09-05 19:54:46 +0000 UTC
fix content overflow in iPad portrait orientation (#10)

1 files changed,  +3, -4
M src/routes/index.svelte
+3, -4
 1@@ -175,7 +175,6 @@
 2 <style>
 3   .desc {
 4     margin-bottom: 5px;
 5-    margin-left: 25px;
 6     grid-row: 1;
 7     grid-column: 1;
 8     align-items: center;
 9@@ -220,12 +219,12 @@
10     grid-template-columns: minmax(250px, 400px) minmax(350px, 600px);
11     grid-template-rows: 50px 1fr;
12     column-gap: 10px;
13+    margin: 0 25px;
14   }
15 
16   .sidebar {
17     grid-column: 1;
18     grid-row: 2;
19-    padding: 0 25px 25px 25px;
20   }
21 
22   .plugins {
23@@ -239,8 +238,8 @@
24 
25   @media only screen and (max-width: 700px) {
26     .container {
27-      grid-template-columns: 92%;
28-      justify-content: center;
29+      grid-template-columns: 100%;
30+      margin: 0 15px;
31     }
32 
33     .sidebar {