Skip to content

Commit

Permalink
Most Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
okbel committed Oct 13, 2020
1 parent 6978b4d commit 6010d3e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion assets/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
:root {
--bg-primary: white;
--bg-primary-hover: rgba(0, 0, 0, 0.075);
--bg-primary-accent: #ddd;
--bg-primary-accent: #f1f3f5;
--bg-secondary: black;

--text-primary: black;
Expand Down
2 changes: 1 addition & 1 deletion components/core/Featurebar/Featurebar.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.separator {
@apply mx-3 bg-gray-400;
@apply mx-3 bg-secondary;
width: 1px;
height: 20px;
}
Expand Down
2 changes: 1 addition & 1 deletion components/core/Featurebar/Featurebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ interface Props {

const Featurebar: FC<Props> = ({ title, description, className }) => {
const rootClassName = cn(
'hidden py-2 px-6 bg-gray-100 text-sm text-gray-600 md:flex flex-row justify-center items-center font-medium',
'hidden py-2 px-6 bg-primary-accent text-primary text-sm text-gray-600 md:flex flex-row justify-center items-center font-medium border-b border-primary-accent',
className
)
return (
Expand Down
2 changes: 1 addition & 1 deletion components/core/Searchbar/Searchbar.module.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.input {
@apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg text-gray-600 placeholder-accent-4 pr-10;
@apply bg-transparent px-3 py-2 appearance-none w-full transition duration-150 ease-in-out rounded-lg placeholder-accent-4 pr-10;
min-width: 300px;
}

Expand Down
2 changes: 1 addition & 1 deletion components/core/Searchbar/Searchbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const Searchbar: FC<Props> = ({ className }) => {
return (
<div
className={cn(
'relative rounded-lg text-sm bg-accent-2 text-gray-600 w-full',
'relative rounded-lg text-sm bg-primary-accent text-primary w-full',
className
)}
>
Expand Down
5 changes: 3 additions & 2 deletions components/ui/Button/Button.module.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
.root {
@apply text-secondary cursor-pointer inline-flex px-10 rounded-sm leading-6
bg-secondary transition ease-in-out duration-150 shadow-sm font-semibold
text-center justify-center uppercase py-4 uppercase text-center focus:outline-none;
text-center justify-center uppercase py-4 uppercase text-center focus:outline-none
border border-transparent;
}

.root:hover {
@apply bg-gray-800;
@apply bg-primary-accent text-primary border border-secondary;
}

.root:focus {
Expand Down

0 comments on commit 6010d3e

Please sign in to comment.