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