add example css. bump.

This commit is contained in:
Thomas Heller
2018-01-10 10:14:52 +01:00
parent 81e3914de2
commit 4d49971eb0
3 changed files with 5 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
{ {
"devDependencies": { "devDependencies": {
"shadow-cljs": "^2.0.122" "shadow-cljs": "^2.0.129"
} }
} }

3
public/css/main.css Normal file
View File

@@ -0,0 +1,3 @@
body {
color: green;
}

View File

@@ -1,6 +1,7 @@
<!doctype html> <!doctype html>
<html> <html>
<head><title>Browser Starter</title></head> <head><title>Browser Starter</title></head>
<link rel="stylesheet" href="/css/main.css">
<body> <body>
<h1>shadow-cljs - Browser</h1> <h1>shadow-cljs - Browser</h1>
<div id="app"></div> <div id="app"></div>