mirror of
https://github.com/AustinKelsay/plebdevs.git
synced 2025-06-06 18:31:00 +00:00
Style fix
This commit is contained in:
parent
5492303ca5
commit
b577e26825
@ -95,7 +95,7 @@ export function CourseTemplate({ course }) {
|
|||||||
WebkitBoxOrient: "vertical",
|
WebkitBoxOrient: "vertical",
|
||||||
WebkitLineClamp: "2"
|
WebkitLineClamp: "2"
|
||||||
}}>
|
}}>
|
||||||
<div className="w-full flex flex-row justify-between items-center">
|
<div className="w-full flex flex-row justify-between items-start">
|
||||||
{(course.summary || course.description)?.split('\n').map((line, index) => (
|
{(course.summary || course.description)?.split('\n').map((line, index) => (
|
||||||
<span key={index}>{line}</span>
|
<span key={index}>{line}</span>
|
||||||
))}
|
))}
|
||||||
|
@ -84,7 +84,7 @@ export function DocumentTemplate({ document }) {
|
|||||||
WebkitBoxOrient: "vertical",
|
WebkitBoxOrient: "vertical",
|
||||||
WebkitLineClamp: "2"
|
WebkitLineClamp: "2"
|
||||||
}}>
|
}}>
|
||||||
<div className="w-full flex flex-row justify-between items-center">
|
<div className="w-full flex flex-row justify-between items-start">
|
||||||
{(document.summary || document.description)?.split('\n').map((line, index) => (
|
{(document.summary || document.description)?.split('\n').map((line, index) => (
|
||||||
<span key={index}>{line}</span>
|
<span key={index}>{line}</span>
|
||||||
))}
|
))}
|
||||||
|
@ -86,7 +86,7 @@ export function VideoTemplate({ video }) {
|
|||||||
WebkitBoxOrient: "vertical",
|
WebkitBoxOrient: "vertical",
|
||||||
WebkitLineClamp: "2"
|
WebkitLineClamp: "2"
|
||||||
}}>
|
}}>
|
||||||
<div className="w-full flex flex-row justify-between items-center">
|
<div className="w-full flex flex-row justify-between items-start">
|
||||||
{(video.summary || video.description)?.split('\n').map((line, index) => (
|
{(video.summary || video.description)?.split('\n').map((line, index) => (
|
||||||
<span key={index}>{line}</span>
|
<span key={index}>{line}</span>
|
||||||
))}
|
))}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user