diff --git a/frontend/src/pages/ticket.rs b/frontend/src/pages/ticket.rs index be911dd..e087578 100644 --- a/frontend/src/pages/ticket.rs +++ b/frontend/src/pages/ticket.rs @@ -674,9 +674,9 @@ pub fn all_tickets_component() -> Html { html! {
{ format!("Error: {}", e) }
} } else { html! { -{ &t.description }
diff --git a/frontend/src/styles/components/_tickets.scss b/frontend/src/styles/components/_tickets.scss index bf6b9fb..1be5f73 100644 --- a/frontend/src/styles/components/_tickets.scss +++ b/frontend/src/styles/components/_tickets.scss @@ -7,8 +7,31 @@ display: flex; flex-direction: column; gap: $spacing-sm; - + .meta { color: $color-muted; font-size: 0.9rem; } .title { font-weight: 600; } + } +.ticketbox { + max-width: auto; + margin:0 0; + margin-top: 96px; + background-color: #ffec3f; + padding-bottom: 96px; + padding-left: 32px; + padding-right: 32px; + padding-top: 96px; + border-radius: 20px; + border-color: #000000; + border-style: double; + box-shadow: 20px 20px 10px; + box-shadow: rgb(43, 43, 43); + font-size: 26px; +} + +.postits { + display: grid; + grid-template-columns: auto auto auto; + gap: 8px; +} \ No newline at end of file diff --git a/frontend/src/styles/main.scss b/frontend/src/styles/main.scss index 706057e..f1c5e95 100644 --- a/frontend/src/styles/main.scss +++ b/frontend/src/styles/main.scss @@ -59,6 +59,7 @@ body { border-style: double; box-shadow: 20px 20px 10px; box-shadow: rgb(43, 43, 43); + font-size: 26px; input, button {