Skip to content

Commit

Permalink
chore: 2.55.2 release (#3935)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickytonline authored Aug 13, 2024
2 parents 2a8aa85 + 75dc49a commit e25d621
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@

> All notable changes to this project will be documented in this file

## [2.55.2-beta.1](https://github.com/open-sauced/app/compare/v2.55.1...v2.55.2-beta.1) (2024-08-12)


### 🐛 Bug Fixes

* now the back of the dev card no longer peers through when flipped on Safari and Firefox ([#3931](https://github.com/open-sauced/app/issues/3931)) ([eb9f458](https://github.com/open-sauced/app/commit/eb9f458c67adbd10d47572144451087e35bf340d))

## [2.55.1](https://github.com/open-sauced/app/compare/v2.55.0...v2.55.1) (2024-08-12)


Expand Down
10 changes: 8 additions & 2 deletions components/molecules/DevCard/dev-card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Tilt from "react-parallax-tilt";
import { FiGlobe } from "react-icons/fi";
import { PiCrownSimpleFill } from "react-icons/pi";
import { HiArrowNarrowRight, HiTrendingDown, HiTrendingUp } from "react-icons/hi";
import clsx from "clsx";
import Button from "components/shared/Button/button";
import openSaucedImg from "img/openSauced-icon.png";
import { getRelativeDays } from "lib/utils/date-utils";
Expand Down Expand Up @@ -61,7 +62,7 @@ export default function DevCard(props: DevCardProps) {

return (
<div
className="DevCard"
className="DevCard select-none"
style={{
width: "245px",
height: "348px",
Expand Down Expand Up @@ -102,7 +103,12 @@ export default function DevCard(props: DevCardProps) {
height={348}
/>

<div className="z-10 flex flex-col gap-2 items-center justify-center w-full h-full text-white">
<div
className={clsx(
"z-10 flex flex-col gap-2 items-center justify-center w-full h-full text-white",
isFlipped && "invisible"
)}
>
{/** Avatar + @Username **/}
<div className="flex flex-col items-center gap-1">
<Image
Expand Down
4 changes: 2 additions & 2 deletions npm-shrinkwrap.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@open-sauced/app",
"description": "🍕The dashboard for open source discovery.",
"keywords": [],
"version": "2.55.1",
"version": "2.55.2-beta.1",
"author": "Brian Douglas <[email protected]>",
"private": true,
"license": "Apache 2.0",
Expand Down

0 comments on commit e25d621

Please sign in to comment.