Skip to content

Commit

Permalink
revert formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanbcbauer committed Feb 21, 2024
1 parent 03c6d6b commit d06cd1f
Showing 1 changed file with 28 additions and 36 deletions.
64 changes: 28 additions & 36 deletions src/components/OpenMeetings/MeetingInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,24 +9,16 @@
* https://www.apache.org/licenses/LICENSE-2.0.
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* distributed under the License is distributed on an 'AS IS' BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*
* SPDX-License-Identifier: Apache-2.0
********************************************************************************/
import React from "react";
import React from 'react';

export default function MeetingInfo({
title,
schedule,
description,
contact,
sessionLink = undefined,
meetingLink = undefined,
additionalLinks = [],
}) {
export default function MeetingInfo({title, schedule, description, contact, sessionLink = undefined, meetingLink = undefined, additionalLinks = []}) {
return (
<section style={meetingInfo}>
<div style={meetingOverview}>
Expand Down Expand Up @@ -75,48 +67,48 @@ export default function MeetingInfo({
}

const itemLink = {
fontWeight: "400",
fontSize: "14px",
lineHeight: "18px",
color: "#faa023",
fontWeight: '400',
fontSize: '14px',
lineHeight: '18px',
color: '#faa023',
listStyleImage: 'url("/img/product_link_bullet.png")',
};

const itemTitle = {
fontWeight: "400",
fontSize: "14px",
lineHeight: "18px",
listStyle: "none",
fontWeight: '400',
fontSize: '14px',
lineHeight: '18px',
listStyle: 'none',
};

const meetingInfo = {
display: "flex",
width: "100%",
padding: "1rem 0 0.5rem",
display: 'flex',
width: '100%',
padding: '1rem 0 0.5rem',
};

const meetingOverview = {
width: "33%",
margin: "auto 0",
padding: "2rem 0 0.5rem",
borderRight: "2px solid #faa023",
width: '33%',
margin: 'auto 0',
padding: '2rem 0 0.5rem',
borderRight: '2px solid #faa023',
};

const meetingTitle = {
fontWeight: "700",
fontSize: "20px",
lineHeight: "25px",
fontWeight: '700',
fontSize: '20px',
lineHeight: '25px',
};

const meetingSchedule = {
fontWeight: "400",
fontSize: "12px",
lineHeight: "16px",
color: "#a5a5a5",
fontWeight: '400',
fontSize: '12px',
lineHeight: '16px',
color: '#a5a5a5',
};

const meetingDetails = {
width: "67%",
margin: "auto 0",
padding: "0.5rem 1.5rem",
width: '67%',
margin: 'auto 0',
padding: '0.5rem 1.5rem',
};

0 comments on commit d06cd1f

Please sign in to comment.