Skip to content

Commit

Permalink
Update CSS.
Browse files Browse the repository at this point in the history
  • Loading branch information
gk-brown committed Oct 14, 2024
1 parent 5ad428e commit f59c2f1
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion kilo-server/src/main/java/org/httprpc/kilo/WebService.java
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ public void init() throws ServletException {
var webServlet = type.getAnnotation(WebServlet.class);

if (webServlet == null) {
throw new ServletException("Missing web servlet annotation.");
throw new ServletException("Web servlet annotation is required.");
}

var urlPatterns = webServlet.urlPatterns();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
title = API Index
title = Service Index
services = Services
default = default
4 changes: 2 additions & 2 deletions kilo-server/src/main/resources/org/httprpc/kilo/api.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>{{service/path}}</title>
<style>
:root {
font-family: sans-serif;
font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 14px;
scroll-behavior: smooth;
color: #393939;
Expand Down Expand Up @@ -103,7 +103,7 @@
align-items: start;
}
code, pre {
font-family: monospace;
font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
font-size: .9em;
}
pre {
Expand Down
2 changes: 1 addition & 1 deletion kilo-server/src/main/resources/org/httprpc/kilo/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<title>{{@title}}</title>
<style>
:root {
font-family: sans-serif;
font-family: BlinkMacSystemFont, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
font-size: 14px;
scroll-behavior: smooth;
color: #393939;
Expand Down

0 comments on commit f59c2f1

Please sign in to comment.