Browse code

Add styling to command history to separate adjacent commands

Joseph Weston authored on 02/12/2021 06:08:23
Showing 1 changed files
... ...
@@ -76,10 +76,12 @@
76 76
 (defclass history-style []
77 77
   {:list-style-type :none
78 78
    :padding 0}
79
+  [:&>li
80
+   {:margin-bottom :2rem
81
+    :border :1px}]
79 82
   [(s/> :li :.input)
80 83
    {:font-weight :bold
81 84
     :background-color (colorscheme :light0-soft)
82
-    :padding-bottom :0.4rem
83 85
     :margin-bottom :0.4rem}])
84 86
 
85 87
 (defn- content-after [x] [(s/& s/after) {:content (str "'" x "'")}])