Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b3d66f3ce8 |
@ -13,7 +13,7 @@ module.exports = {
|
|||||||
features: {
|
features: {
|
||||||
hypershelf: {
|
hypershelf: {
|
||||||
enableRedirectNowButton: {
|
enableRedirectNowButton: {
|
||||||
value: "false",
|
value: "true",
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
@ -5,9 +5,9 @@ import { featureFlags } from "./config/feature-flags";
|
|||||||
|
|
||||||
const theme = {
|
const theme = {
|
||||||
colors: {
|
colors: {
|
||||||
background: "#000000",
|
background: "#ffffff",
|
||||||
text: "#ffffff",
|
text: "#000000",
|
||||||
accent: "#ffffff"
|
accent: "#000000"
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@ -3,5 +3,5 @@ export type FeatureFlags = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export const featureFlags: FeatureFlags = {
|
export const featureFlags: FeatureFlags = {
|
||||||
enableRedirectNowButton: false
|
enableRedirectNowButton: true
|
||||||
};
|
};
|
||||||
|
|||||||
@ -47,8 +47,8 @@ export function RedirectPage({
|
|||||||
display: "flex",
|
display: "flex",
|
||||||
alignItems: "center",
|
alignItems: "center",
|
||||||
justifyContent: "center",
|
justifyContent: "center",
|
||||||
backgroundColor: "#000000",
|
backgroundColor: "#ffffff",
|
||||||
color: "#ffffff",
|
color: "#000000",
|
||||||
fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, sans-serif"
|
fontFamily: "system-ui, -apple-system, BlinkMacSystemFont, sans-serif"
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
@ -67,9 +67,8 @@ export function RedirectPage({
|
|||||||
marginTop: "0.5rem",
|
marginTop: "0.5rem",
|
||||||
padding: "0.5rem 1rem",
|
padding: "0.5rem 1rem",
|
||||||
borderRadius: "4px",
|
borderRadius: "4px",
|
||||||
border: "1px solid #ffffff",
|
border: "1px solid #000000",
|
||||||
backgroundColor: "#000000",
|
backgroundColor: "#ffffff",
|
||||||
color: "#ffffff",
|
|
||||||
cursor: "pointer"
|
cursor: "pointer"
|
||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user