Skip to content

Commit

Permalink
Added curve in button
Browse files Browse the repository at this point in the history
  • Loading branch information
Amanmahe committed Nov 16, 2024
1 parent c1d0385 commit 0d51413
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Connection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -742,7 +742,7 @@ const Connection: React.FC<ConnectionProps> = ({
<div className="absolute left-4 flex items-center mx-0 px-0 space-x-1">
{isRecordingRef.current && (
<div className="flex items-center space-x-1 w-min ml-2">
<button className="flex items-center justify-center px-3 py-2 select-none min-w-20 bg-primary text-destructive whitespace-nowrap rounded"
<button className="flex items-center justify-center px-3 py-2 select-none min-w-20 bg-primary text-destructive whitespace-nowrap rounded-xl"
>
{formatTime(elapsedTime)}
</button>
Expand All @@ -754,7 +754,7 @@ const Connection: React.FC<ConnectionProps> = ({
>
<PopoverTrigger asChild>
<Button
className="flex items-center justify-center px-3 py-2 select-none min-w-12 text-destructive whitespace-nowrap rounded"
className="flex items-center justify-center px-3 py-2 select-none min-w-12 text-destructive whitespace-nowrap rounded-xl"
variant="destructive"
>
{endTimeRef.current === null ? (
Expand Down
4 changes: 2 additions & 2 deletions src/components/LandingComp/HeadSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const HeadSection: React.FC = () => {

<div className="flex flex-col sm:flex-row justify-center items-center sm:justify-start md:justify-start gap-3 sm:gap-5 space-y-0 my-10">
<Link href="/stream">
<Button className="hidden sm:flex items-center justify-center py-2 px-4 sm:py-2 sm:px-6 rounded-full font-semibold">
<Button className="hidden sm:flex items-center justify-center py-2 px-4 sm:py-2 sm:px-6 rounded-xl font-semibold">
<Image
src={currentTheme === "dark" ? "./assets/dark/favicon.ico" : "./assets/light/favicon.ico"}
width={16}
Expand All @@ -78,7 +78,7 @@ const HeadSection: React.FC = () => {
<Link href="https://github.com/upsidedownlabs/Chords-Arduino-Firmware" target="_blank">
<Button
variant="outline"
className="hidden sm:flex items-center justify-center py-2 px-4 sm:py-2 sm:px-6 rounded-full border border-gray-300 text-gray-600 font-semibold"
className="hidden sm:flex items-center justify-center py-2 px-4 sm:py-2 sm:px-6 rounded-xl border border-gray-300 text-gray-600 font-semibold"
>
<GitHubLogoIcon className="mr-2 h-5 w-5" />
<span>Arduino Firmware</span>
Expand Down

0 comments on commit 0d51413

Please sign in to comment.