aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--router.lisp32
1 files changed, 16 insertions, 16 deletions
diff --git a/router.lisp b/router.lisp
index 3b75874..a4a518a 100644
--- a/router.lisp
+++ b/router.lisp
@@ -412,22 +412,22 @@ If REVERSE, reverse the redirect logic."
(buffer "*Blocked Site*" 'nyxt:base-mode)
"Show blocked internal page for URL."
(let ((blocked-style (theme:themed-css (nyxt:theme nyxt:*browser*)
- (body
- :padding 0
- :margin 0)
- (.container
- :display "flex"
- :height "100vh"
- :justify-content "center"
- :align-items "center"
- :flex-direction "column")
- ("#banner"
- :display "flex"
- :justify-content "center"
- :flex-direction "column"
- :width "70vw")
- ("#url"
- :text-decoration "underline"))))
+ `(body
+ :padding 0
+ :margin 0)
+ `(.container
+ :display "flex"
+ :height "100vh"
+ :justify-content "center"
+ :align-items "center"
+ :flex-direction "column")
+ `("#banner"
+ :display "flex"
+ :justify-content "center"
+ :flex-direction "column"
+ :width "70vw")
+ `("#url"
+ :text-decoration "underline"))))
(spinneret:with-html-string
(:style blocked-style)
(:div :class "container"