Skip to content

Commit

Permalink
Merge pull request #7 from AI4Bharat/react-django
Browse files Browse the repository at this point in the history
UI Changes
  • Loading branch information
Shanks0465 authored Aug 29, 2024
2 parents babb3fe + 2835e88 commit e8ac94c
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion frontend/components/AreaTimeline.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ const Card = ({
<Box>
<HStack>
<HStack spacing={2} mb={1}>
<Text fontSize="lg" color={isEvenId ? "teal.400" : "blue.400"}>
<Text fontSize="lg" textColor={"a4borange"}>
{published_on}
</Text>
<Text fontSize="sm">{type}</Text>
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/Models.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ export default function ModelView({
borderColor={"a4borange"}
>
<Text textColor={"a4borange"}>
Download : {model.hfData.downloads}
Downloads : {model.hfData.downloads}
</Text>
</Box>
) : (
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ interface NavItem {
}

const NAV_ITEMS: Array<NavItem> = [
{ label: "Home", href: `${imagePrefix}` },
{ label: "Home", href: `${imagePrefix}/` },
{
label: "Areas",
children: [
Expand Down
2 changes: 1 addition & 1 deletion frontend/components/ToolInstructionComponent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function ToolInstructions({
steps: Array<Instruction>;
}) {
return (
<Container maxW="20xl">
<Container borderWidth={3} borderRadius={25} p={5} maxW="20xl">
<chakra.h2 fontSize="4xl" fontWeight="bold" mb={2}>
Installation Steps
</chakra.h2>
Expand Down

0 comments on commit e8ac94c

Please sign in to comment.