fix: list-style

This commit is contained in:
Val 2025-02-13 23:49:54 +07:00
parent 8fd3b43cb4
commit a94e3b854f
3 changed files with 16 additions and 5 deletions

View File

@ -586,6 +586,9 @@
.blog-item {
margin-bottom: 50px;
}
.list-bullet li {
list-style-type: circle;
}
.blog-item-title {
font-size: 28px;
}

View File

@ -238,10 +238,10 @@ Primary use: Multipurpose Template
--gradient-primary-alpha-2: linear-gradient(90deg, transparent 13%, var(--color-primary-1) 60%);
--border-radius-default: 4px;
--border-radius-large: 30px;
--box-shadow:
0px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.03), 0px 3px 5px 0px rgba(0, 0, 0, 0.03);
--box-shadow-strong:
0px 5px 10px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06), 0px 3px 5px 0px rgba(0, 0, 0, 0.06);
--box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05), 0px 1px 1px 0px rgba(0, 0, 0, 0.03),
0px 3px 5px 0px rgba(0, 0, 0, 0.03);
--box-shadow-strong: 0px 5px 10px 0px rgba(0, 0, 0, 0.08), 0px 1px 1px 0px rgba(0, 0, 0, 0.06),
0px 3px 5px 0px rgba(0, 0, 0, 0.06);
--box-shadow-block: 0px 3px 50px 0px rgba(0, 0, 0, 0.05);
--box-shadow-block-strong: 0px 3px 50px 0px rgba(0, 0, 0, 0.15);
--transition-default: all 0.27s cubic-bezier(0, 0, 0.58, 1);
@ -10290,6 +10290,9 @@ a.link-to-top.color:before {
position: relative;
margin-bottom: 80px;
}
.list-bullet li {
list-style-type: disc;
}
.blog-item .lead,
.blog-item blockquote p {
font-size: 130%;

View File

@ -1,4 +1,5 @@
"use client";
import Link from "next/link";
import { CardTeam } from "./Teams/CardTeam";
export default function Team({ data }: any) {
@ -17,7 +18,11 @@ export default function Team({ data }: any) {
{data.map((member: any, index: any) => (
<div key={index} className="text-center">
<CardTeam data={member} />
<button className="bg-[#64B3B4] text-white px-2 py-1 m-3 rounded-3xl hover:opacity-[0.7]">Biography</button>
<Link href={`/biography/${member.name}`} passHref>
<button className="bg-[#64B3B4] text-white px-2 py-1 m-3 rounded-3xl hover:opacity-[0.7]">
Biography
</button>
</Link>
</div>
))}
{/* End Team item */}