Skip to content

Commit

Permalink
overflow:auto in fullscreen; bump 0.3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed Aug 21, 2018
1 parent 671c56c commit 9ccbe7f
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 691 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Read stylesheets: [style.cljs](https://github.com/Respo/respo-ui/blob/master/src
[![Clojars Project](https://img.shields.io/clojars/v/respo/ui.svg)](https://clojars.org/respo/ui)

```clojure
[respo/ui "0.3.6"]
[respo/ui "0.3.7"]
```

```clojure
Expand Down
2 changes: 1 addition & 1 deletion build.boot
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:username "jiyinyiyong"
:password (read-password "Clojars password: ")}]))

(def +version+ "0.3.6")
(def +version+ "0.3.7")

(deftask deploy []
(comp
Expand Down
21 changes: 18 additions & 3 deletions calcit.edn

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"license": "MIT",
"devDependencies": {
"http-server": "^0.11.1",
"shadow-cljs": "^2.3.23"
"shadow-cljs": "^2.6.2"
},
"dependencies": {}
}
5 changes: 3 additions & 2 deletions shadow-cljs.edn
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
[mvc-works/keycode "0.1.3"]
[mvc-works/verbosely "0.1.2"]
[mvc-works/shell-page "0.1.7"]
[respo "0.8.16"]
[respo "0.8.20"]
[respo/value "0.2.4"]
[respo/router "0.4.0"]
[respo/markdown "0.2.1"]]
Expand All @@ -15,7 +15,8 @@
:modules {:client {:entries [respo-ui.main]}}
:devtools {:after-load respo-ui.main/reload!
:http-root "target"
:http-port 7000}
:http-port 7000
:loader-mode :eval}
:release {:output-dir "dist/"
:module-hash-names 8
:build-options {:manifest-name "assets.edn"}}}
Expand Down
6 changes: 4 additions & 2 deletions src/respo_ui/core.cljs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
:display "inline-block",
:padding "0 8px",
:outline :none,
:vertical-align :top})
:vertical-align :top,
:background-color :white})

(def card {:padding "16px"})

Expand Down Expand Up @@ -48,7 +49,8 @@

(def font-normal "Hind, Helvatica, Arial, sans-serif")

(def fullscreen {:position "absolute", :left 0, :top 0, :width "100%", :height "100%"})
(def fullscreen
{:position "absolute", :left 0, :top 0, :width "100%", :height "100%", :overflow :auto})

(def global
{:line-height 2, :font-size "14px", :font-family default-fonts, :color colors/texture})
Expand Down
Loading

0 comments on commit 9ccbe7f

Please sign in to comment.