Remove text-opacity classes as Tailwind has dropped them
This commit is contained in:
parent
9c09a9d91e
commit
3f3c77e989
@ -74,9 +74,7 @@ code {
|
|||||||
source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
source-code-pro, Menlo, Monaco, Consolas, 'Courier New', monospace;
|
||||||
}
|
}
|
||||||
|
|
||||||
.text-base-content-important {
|
|
||||||
color: hsla(var(--bc) / var(--tw-text-opacity)) !important;
|
|
||||||
}
|
|
||||||
|
|
||||||
svg {
|
svg {
|
||||||
vertical-align: unset;
|
vertical-align: unset;
|
||||||
|
|||||||
@ -70,7 +70,7 @@ const AvatarCard: React.FC<AvatarCardProps> = ({
|
|||||||
</span>
|
</span>
|
||||||
)}
|
)}
|
||||||
</h5>
|
</h5>
|
||||||
<div className="mt-3 text-base-content text-opacity-60 font-mono">
|
<div className="mt-3 text-base-content font-mono">
|
||||||
{loading || !profile
|
{loading || !profile
|
||||||
? skeleton({ widthCls: 'w-48', heightCls: 'h-5' })
|
? skeleton({ widthCls: 'w-48', heightCls: 'h-5' })
|
||||||
: profile.bio}
|
: profile.bio}
|
||||||
|
|||||||
@ -140,7 +140,7 @@ const BlogCard = ({
|
|||||||
addSuffix: true,
|
addSuffix: true,
|
||||||
})}
|
})}
|
||||||
</p>
|
</p>
|
||||||
<p className="mt-3 text-base-content text-opacity-60 text-sm">
|
<p className="mt-3 text-base-content text-sm">
|
||||||
{article.description}
|
{article.description}
|
||||||
</p>
|
</p>
|
||||||
<div className="mt-4 flex items-center flex-wrap justify-center md:justify-start">
|
<div className="mt-4 flex items-center flex-wrap justify-center md:justify-start">
|
||||||
|
|||||||
@ -72,7 +72,7 @@ const CertificationCard = ({
|
|||||||
)}
|
)}
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-base-content text-opacity-60">
|
<div className="text-base-content">
|
||||||
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
||||||
{loading ? (
|
{loading ? (
|
||||||
renderSkeleton()
|
renderSkeleton()
|
||||||
|
|||||||
@ -171,7 +171,7 @@ const DetailsCard = ({ profile, loading, social, github }: Props) => {
|
|||||||
return (
|
return (
|
||||||
<div className="card shadow-lg card-sm bg-base-100">
|
<div className="card shadow-lg card-sm bg-base-100">
|
||||||
<div className="card-body">
|
<div className="card-body">
|
||||||
<div className="text-base-content text-opacity-60">
|
<div className="text-base-content">
|
||||||
{loading || !profile ? (
|
{loading || !profile ? (
|
||||||
renderSkeleton()
|
renderSkeleton()
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
@ -64,7 +64,7 @@ const EducationCard = ({
|
|||||||
)}
|
)}
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-base-content text-opacity-60">
|
<div className="text-base-content">
|
||||||
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
||||||
{loading ? (
|
{loading ? (
|
||||||
renderSkeleton()
|
renderSkeleton()
|
||||||
|
|||||||
@ -16,9 +16,7 @@ const ErrorPage: React.FC<CustomError> = (props) => {
|
|||||||
{`${props.status}`}
|
{`${props.status}`}
|
||||||
</h1>
|
</h1>
|
||||||
<p className="text-lg pb-2 text-base-content">{props.title}</p>
|
<p className="text-lg pb-2 text-base-content">{props.title}</p>
|
||||||
<div className="text-base-content text-opacity-60">
|
<div className="text-base-content">{props.subTitle}</div>
|
||||||
{props.subTitle}
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -69,7 +69,7 @@ const ExperienceCard = ({
|
|||||||
)}
|
)}
|
||||||
</h5>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
<div className="text-base-content text-opacity-60">
|
<div className="text-base-content">
|
||||||
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
<ol className="relative border-l border-base-300 border-opacity-30 my-2 mx-4">
|
||||||
{loading ? (
|
{loading ? (
|
||||||
renderSkeleton()
|
renderSkeleton()
|
||||||
|
|||||||
@ -112,7 +112,7 @@ const ExternalProjectCard = ({
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<p className="mt-2 text-base-content text-opacity-60 text-sm text-justify">
|
<p className="mt-2 text-base-content text-sm text-justify">
|
||||||
{item.description}
|
{item.description}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -99,11 +99,11 @@ const GithubProjectCard = ({
|
|||||||
<span>{item.name}</span>
|
<span>{item.name}</span>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<p className="mb-5 mt-1 text-base-content text-opacity-60 text-sm">
|
<p className="mb-5 mt-1 text-base-content text-sm">
|
||||||
{item.description}
|
{item.description}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-between text-sm text-base-content text-opacity-60 truncate">
|
<div className="flex justify-between text-sm text-base-content truncate">
|
||||||
<div className="flex grow">
|
<div className="flex grow">
|
||||||
<span className="mr-3 flex items-center">
|
<span className="mr-3 flex items-center">
|
||||||
<AiOutlineStar className="mr-0.5" />
|
<AiOutlineStar className="mr-0.5" />
|
||||||
|
|||||||
@ -105,7 +105,7 @@ const PublicationCard = ({
|
|||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
{item.description && (
|
{item.description && (
|
||||||
<p className="mt-2 text-base-content text-opacity-60 text-sm text-justify">
|
<p className="mt-2 text-base-content text-sm text-justify">
|
||||||
{item.description}
|
{item.description}
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user