Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/rt4914/KlinicCon-Frontend i…
Browse files Browse the repository at this point in the history
…nto 30-feature-request-ui-add-loginsignup-modal
  • Loading branch information
vanamraghu committed Oct 13, 2024
2 parents 701d1c1 + c3b72be commit c80bd11
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/1_bug_report_form.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Bug Report
description: Mention details of what this bug is
title: "Fix #4: Adds Issue Template"
title: [BUG]:
body:
- type: markdown
attributes:
Expand Down
8 changes: 5 additions & 3 deletions src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
const App = () => {
return (
<>
<h1 className="underline p-4">Hello World!</h1>
</>
<div>
<h1 className="text-orange bg-brown text-4xl font-bold">
Welcome to KlinicCon App
</h1>
</div>
);
};

Expand Down
2 changes: 1 addition & 1 deletion src/components/SocialLink.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import PropTypes from "prop-types";
const SocialLink = ({ icon, href, text }) => {
return (
<div>
<Link to={href}>
<Link to={href} target="_blank">
<div
className={`border border-black rounded-full
flex justify-center items-center hover:bg-black hover:text-white w-12 h-12`}
Expand Down
15 changes: 14 additions & 1 deletion tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
const defaultColors = require('tailwindcss/colors');

/** @type {import('tailwindcss').Config} */
export default {
content: [
Expand All @@ -6,7 +8,18 @@ export default {
"./.storybook/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {},
extend: {
colors: {
...defaultColors,
'orange': {
DEFAULT: '#ff6725',
'dark': '#ff3f25',
'light': '#fef7f3',
},
'brown': '#453a34',
'green': '#00b579',
},
},
},
plugins: [],
};

0 comments on commit c80bd11

Please sign in to comment.