-
Notifications
You must be signed in to change notification settings - Fork 6
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
[FE] 街の領域に色を付けるように #608
[FE] 街の領域に色を付けるように #608
Conversation
@narirou @imamiya-masaki レビューお願いいたします。 |
b196bc2
to
dcb7533
Compare
dcb7533
to
4b09ca2
Compare
@popunbom
|
frontend/tailwind.config.ts
Outdated
@@ -3,4 +3,5 @@ import type { Config } from "tailwindcss"; | |||
export default { | |||
content: ["./app/**/{**,.client,.server}/**/*.{js,jsx,ts,tsx}"], | |||
plugins: [], | |||
safelist: [{ pattern: /bg-.+-600/ }, { pattern: /border-.+-500/ }], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
色指定があるので、styleプロパティでやってtailwindでの対応は実施しないようにお願いします
@@ -282,7 +282,7 @@ const TownLayer = memo(function TownLayer() { | |||
> | |||
<div | |||
role="presentation" | |||
className="absolute rounded-full bg-neutral-100 bg-opacity-40 border-2 border-neutral-200" | |||
className={`absolute rounded-full bg-neutral-300 bg-opacity-40 border-4 border-${color}-500`} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここも可能であればbgは100でお願いしたいです
初期の見た目がグレーになってしまうためmm
@@ -11,6 +11,7 @@ type TextProps = PropsWithChildren<{ | |||
size?: Size; | |||
variant?: Variant; | |||
className?: string; | |||
style?: React.CSSProperties; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
こちら不要そうです
一旦マージして私の方で揃えてみます! |
relates: #241
こちらに対応しました