Change button styles
This commit is contained in:
parent
4f352de0d2
commit
8f8242a97a
|
@ -1,7 +1,7 @@
|
|||
[server]
|
||||
host = "localhost"
|
||||
port = 8080
|
||||
prefix = ""
|
||||
prefix = "/plan"
|
||||
debug = false
|
||||
|
||||
[schedule]
|
||||
|
|
|
@ -130,6 +130,7 @@ select:-moz-focusring {
|
|||
|
||||
display: inline-block;
|
||||
margin-right: 0.6rem;
|
||||
margin-bottom: 0.5rem;
|
||||
|
||||
border-radius: $border-radius;
|
||||
font-weight: 600;
|
||||
|
|
|
@ -127,7 +127,7 @@ suspend fun PipelineContext<Unit, ApplicationCall>.respondMain(
|
|||
body: MainTemplate.(Theme) -> Unit
|
||||
) {
|
||||
val param = call.request.queryParameters["theme"]
|
||||
val url = call.request.uri.substring(1 + prefix.length)
|
||||
val url = call.request.uri.drop(1 + prefix.length)
|
||||
val user = call.sessions.get<PortalSession>()?.getUser(call)
|
||||
|
||||
if (param != null) {
|
||||
|
|
Loading…
Reference in a new issue