Skip to content

Commit

Permalink
optimized LearningSpaceGoalPanel Styling further
Browse files Browse the repository at this point in the history
  • Loading branch information
AdLer-Lukas committed Feb 1, 2024
1 parent 477b857 commit ed0528b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ export default function LearningSpaceGoalPanel() {
<div>Zu diesem Lernraum gibt es keine eingetragenen Lernziele!</div>
))}
{goals && (
<div className="flex flex-row ">
<div className="flex flex-row">
<div>
<div className="flex flex-row justify-center">
<div className="flex flex-row ">
<img
src={GoalLogo}
alt="Lernziel Logo"
Expand All @@ -40,10 +40,10 @@ export default function LearningSpaceGoalPanel() {
</h3>
</div>

<ul className="ml-4 text-xs list-disc lg:text-sm">
<ul className="ml-4 text-xs list-disc lg:text-sm ">
{goals.map((goal, index) => {
return (
<li key={index}>
<li className="my-2" key={index}>
<TextWithLineBreaks text={goal} />
</li>
);
Expand Down

0 comments on commit ed0528b

Please sign in to comment.