frontend: set max width

This commit is contained in:
Lennart
2025-04-16 21:51:15 +02:00
parent 5b0868c544
commit 63ee4d7d53
2 changed files with 3 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
body { body {
font-family: sans-serif; font-family: sans-serif;
margin: 0; margin: 0 auto;
max-width: 1200px;
} }
* { * {

View File

@@ -23,6 +23,7 @@ pub struct OidcConfig {
pub client_id: ClientId, pub client_id: ClientId,
pub client_secret: Option<ClientSecret>, pub client_secret: Option<ClientSecret>,
pub scopes: Vec<Scope>, pub scopes: Vec<Scope>,
#[serde(default)]
pub allow_sign_up: bool, pub allow_sign_up: bool,
pub require_group: Option<String>, pub require_group: Option<String>,
#[serde(default)] #[serde(default)]