diff --git a/frontend/src/pages/ticket.rs b/frontend/src/pages/ticket.rs index e087578..47e533a 100644 --- a/frontend/src/pages/ticket.rs +++ b/frontend/src/pages/ticket.rs @@ -323,7 +323,7 @@ pub fn submit_ticket_component() -> Html { { if !room_valid { html! { -

{ "Ungültiger oder nicht erlaubter Raum (z. B. 101, K12, D5)" }

+

{ "Ungültiger / nicht erlaubter Raum (z. B. 101, K12, D5)" }

} } else { html! {} diff --git a/frontend/src/styles/components/_tickets.scss b/frontend/src/styles/components/_tickets.scss index 1be5f73..19a474a 100644 --- a/frontend/src/styles/components/_tickets.scss +++ b/frontend/src/styles/components/_tickets.scss @@ -17,7 +17,7 @@ max-width: auto; margin:0 0; margin-top: 96px; - background-color: #ffec3f; + background-color: #90ff82; padding-bottom: 96px; padding-left: 32px; padding-right: 32px; @@ -34,4 +34,8 @@ display: grid; grid-template-columns: auto auto auto; gap: 8px; + +} +.warning { + color: #570000; } \ No newline at end of file diff --git a/frontend/src/styles/main.scss b/frontend/src/styles/main.scss index f1c5e95..e803efd 100644 --- a/frontend/src/styles/main.scss +++ b/frontend/src/styles/main.scss @@ -62,7 +62,7 @@ body { font-size: 26px; - input, button { + input, button, a { padding: 16px; font-size: 1.8rem; background-color: #f0f0f0; @@ -75,4 +75,12 @@ body { button { margin: 16px 0; } + + a { + color: #000000; + text-align: center; + border-style: dashed; + } } + +