perbaikan(kolaborasi): memperbaiki bug modul kolaborasi dan tingkatkan komponen UI
Deskripsi: - Perbaikan endpoint API dan routing kolaborasi - Pembaruan tampilan grup kolaborasi dan partisipasi proyek - Peningkatan komponen skeleton loading - Perbaikan tampilan komponen avatar dan username - Refaktor layout pembuatan dan detail kolaborasi
This commit is contained in:
@@ -63,7 +63,7 @@ export function ComponentGlobal_AvatarAndUsername({
|
||||
<Text
|
||||
c={MainColor.white}
|
||||
fw={"bold"}
|
||||
fz={fontSize ? fontSize : "sm"}
|
||||
fz={fontSize ? fontSize : "md"}
|
||||
lineClamp={1}
|
||||
onClick={() => onCheckProfile()}
|
||||
>
|
||||
|
||||
@@ -2,6 +2,20 @@ import { AccentColor, MainColor } from "@/app_modules/_global/color";
|
||||
import { Card } from "@mantine/core";
|
||||
import React from "react";
|
||||
|
||||
/**
|
||||
* ComponentGlobal_CardStyles
|
||||
*
|
||||
* A React component that renders a customizable card element.
|
||||
*
|
||||
* Props:
|
||||
* - children (React.ReactNode): Content to be displayed inside the card.
|
||||
* - backgroundColor (string, optional): Background color of the card. Defaults to AccentColor.darkblue.
|
||||
* - border (string, optional): Border color of the card. Defaults to AccentColor.blue.
|
||||
* - marginBottom (string | number, optional): Margin below the card. Defaults to "15px".
|
||||
* - height (string | number, optional): Height of the card. Defaults to "auto".
|
||||
* - color (string, optional): Text color inside the card. Defaults to MainColor.white.
|
||||
* - onClickHandler (React.MouseEventHandler<HTMLDivElement>, optional): Function to handle click events on the card.
|
||||
*/
|
||||
export function ComponentGlobal_CardStyles({
|
||||
children,
|
||||
backgroundColor,
|
||||
|
||||
Reference in New Issue
Block a user