This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2015-07-27
Channels
- # beginners (3)
- # boot (8)
- # cljs-dev (10)
- # clojure (87)
- # clojure-art (6)
- # clojure-dev (13)
- # clojure-japan (8)
- # clojure-russia (60)
- # clojure-sg (2)
- # clojurescript (126)
- # clojurewerkz (1)
- # core-logic (10)
- # cursive (6)
- # datomic (30)
- # editors (10)
- # ldnclj (7)
- # off-topic (114)
- # onyx (7)
- # re-frame (7)
- # reagent (37)
Hi, all. Loving the work I’m doing with re-com and re-frame overall. Just had to share that I spent possibly 15 hours reading through re-com code, comparing sample code to my code, to figure out a problem that actually turned out to be caused by having
<link href="assets/css/re-com.css" rel="stylesheet" type="text/css"><link href="assets/css/bootstrap.css" rel="stylesheet" type="text/css">
instead of <link href="assets/css/bootstrap.css" rel="stylesheet" type="text/css"> <link href="assets/css/re-com.css" rel="stylesheet" type="text/css">
@skottk: where did that error come from?
Bootstrap provides base styles and then re-com overrides them
Turns out, if you have re-com first (the way I did at first, in error), the padding in the .compact style gets overridden by the padding in the list-group-item style. For the longest time, thought the error was in my invocation of selection-list. Duh.
@skottk: was that in the docs or sample code somewhere or did that error come only in your code?