From 01c03862db4c9d7da371fb3500aab566d36366ff Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Wed, 22 Feb 2023 10:04:26 +0100 Subject: [PATCH] schedule style improvements --- resources/js/components/episodes/Crew.js | 6 +++--- resources/js/components/pages/Schedule.js | 2 +- resources/sass/common.scss | 10 ++-------- 3 files changed, 6 insertions(+), 12 deletions(-) diff --git a/resources/js/components/episodes/Crew.js b/resources/js/components/episodes/Crew.js index 2343665..610454e 100644 --- a/resources/js/components/episodes/Crew.js +++ b/resources/js/components/episodes/Crew.js @@ -21,7 +21,7 @@ const Crew = ({ crew }) => { return {commentators.length ? - +
{t('episodes.commentary')}
@@ -31,7 +31,7 @@ const Crew = ({ crew }) => { : null} {trackers.length ? - +
{t('episodes.tracking')}
@@ -41,7 +41,7 @@ const Crew = ({ crew }) => { : null} {techies.length ? - +
{t('episodes.setup')}
diff --git a/resources/js/components/pages/Schedule.js b/resources/js/components/pages/Schedule.js index 0e01701..59e6ac4 100644 --- a/resources/js/components/pages/Schedule.js +++ b/resources/js/components/pages/Schedule.js @@ -69,7 +69,7 @@ const Schedule = () => {

{t('schedule.heading')}

-
+
diff --git a/resources/sass/common.scss b/resources/sass/common.scss index 879253c..15ec4ef 100644 --- a/resources/sass/common.scss +++ b/resources/sass/common.scss @@ -12,15 +12,9 @@ h1 { } .button-bar { + margin: -0.5ex; > * { - margin-left: 0.5ex; - margin-right: 0.5ex; - } - > :first-child { - margin-left: 0; - } - > :last-child { - margin-right: 0; + margin: 0.5ex; } } -- 2.39.2