Skip to content

Commit

Permalink
Fix some markup issues where things weren't clearing properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
Raynes committed Dec 30, 2011
1 parent 595f648 commit 7709a6d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/public/css/refheap.css
Expand Up @@ -72,7 +72,7 @@ div#container {
margin-bottom: 0;
}

br.clear {
.clear {
clear: both;
}

Expand Down
4 changes: 2 additions & 2 deletions src/refheap/views/paste.clj
Expand Up @@ -23,7 +23,7 @@
(list (fh/label :private "Private")
(fh/check-box :private)))
(fh/submit-button "Paste!")]
[:br.clear])]))
[:div.clear])]))

(defn show-paste-page [id]
(when-let [{:keys [lines private user contents language date]} (paste/get-paste (Long. id))]
Expand All @@ -42,7 +42,7 @@
(date-string date)]]
[:div#paste.syntax
contents]]
[:br.clear]))))
[:div.clear]))))

(defn pastes [ps]
(for [{:keys [paste-id summary date user]} ps]
Expand Down

0 comments on commit 7709a6d

Please sign in to comment.