Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

new design updated AGAINgit add .git add .git add . #504

Merged
merged 2 commits into from
Sep 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ const EditDeadline = ({ details }) => {
alignStretch
/>

<div className="flex gap-x-12 w-full">
<div className="flex flex-col gap-y-6 w-full md:gap-x-12 md:flex-row">
<ColTitleDes
space
title="Start date"
Expand Down Expand Up @@ -128,11 +128,11 @@ const EditDeadline = ({ details }) => {
}}
/>
</div>
<div className="flex justify-end">
<button className="w-16 h-7 text-sm text-brand-primary font-semibold">
<div className="flex justify-end gap-4">
<button className="h-11 px-5 text-sm text-brand-primary font-semibold">
Cancel
</button>
<button className="w-16 h-7 text-sm bg-brand-primary font-semibold text-brand-bg-white">
<button className="h-11 px-5 text-sm bg-brand-primary font-semibold text-brand-bg-white">
Update
</button>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,10 @@ const RadioButton = ({ id, label, selected, onChange }) => {
htmlFor={id}
className="text-sm leading-none self-center flex items-center gap-x-2"
>
<div className="inline-block h-4 w-4 border-solid border border-black p-px">
<div className={`${style.interior} bg-brand-primary h-full`}></div>
<div className="inline-block h-4 w-4 rounded-1/2 border-solid border border-black p-px">
<div
className={`${style.interior} rounded-1/2 bg-brand-primary h-full`}
></div>
</div>

{label}
Expand Down