From 923daf9005f790a15d7931658f3777968f0f9b10 Mon Sep 17 00:00:00 2001 From: Vencislav Atanasov Date: Sat, 21 Sep 2024 23:23:31 +0300 Subject: [PATCH] Move inline CSS to the stylesheet --- src/Schedule.jsx | 12 +++--------- src/Schedule.scss | 4 ++++ 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/src/Schedule.jsx b/src/Schedule.jsx index 1868655..3073685 100644 --- a/src/Schedule.jsx +++ b/src/Schedule.jsx @@ -36,9 +36,7 @@ export default function Schedule({ {isLoading && <>Loading... }
{header && <> - +
{header.map(hall => )} @@ -60,9 +58,7 @@ export default function Schedule({
} {tracks && <> -
{hall.name}
+
{Object.entries(tracks).filter(([, track]) => !isTrackHidden(track) @@ -93,9 +89,7 @@ export default function Schedule({ {event.abstract &&

{event.abstract}

} -

+

Submit feedback diff --git a/src/Schedule.scss b/src/Schedule.scss index c012dc4..ae6eefd 100644 --- a/src/Schedule.scss +++ b/src/Schedule.scss @@ -86,6 +86,10 @@ margin: 0 1em 2em 0; } + section p.feedback { + text-align: right; + } + .separator { margin: 2.4em 0; height: 1px;