dark theme fixes
This commit is contained in:
@@ -148,7 +148,7 @@ export function GiftBottomSheet({
|
||||
|
||||
<br />
|
||||
|
||||
<Button type="primary" style={{ width: "100%" }} onClick={handleSave}>
|
||||
<Button type="primary" style={{ width: "100%", boxShadow: "none" }} onClick={handleSave}>
|
||||
{t("address.save")}
|
||||
</Button>
|
||||
</ProBottomSheet>
|
||||
|
||||
@@ -50,7 +50,7 @@ export function InfoButtonSheet({
|
||||
<ProText type="secondary" style={{textAlign:"center"}}>{description}</ProText>
|
||||
</div>
|
||||
<br />
|
||||
<Button type="primary" style={{ width: "100%" }} onClick={handleSave}>
|
||||
<Button type="primary" style={{ width: "100%", boxShadow: "none" }} onClick={handleSave}>
|
||||
{t("address.gotIt")}
|
||||
</Button>
|
||||
</ProBottomSheet>
|
||||
|
||||
@@ -121,8 +121,9 @@ export function MapBottomSheet({
|
||||
{t("cart.cancel")}
|
||||
</Button>
|
||||
<Button
|
||||
type="primary"
|
||||
className={styles.actionButton}
|
||||
type="primary"
|
||||
style={{ boxShadow: "none" }}
|
||||
onClick={handleSave}
|
||||
disabled={!selectedLocation}
|
||||
>
|
||||
|
||||
@@ -112,10 +112,7 @@ export function OfficeBottomSheet({
|
||||
autoFocus={false}
|
||||
/>
|
||||
</Form.Item>
|
||||
<ProPhoneInput
|
||||
propName="phone"
|
||||
label={t("address.phone")}
|
||||
/>
|
||||
<ProPhoneInput propName="phone" label={t("address.phone")} />
|
||||
<Form.Item name="note" label={t("address.note")}>
|
||||
<TextArea
|
||||
placeholder={t("address.addressLabel")}
|
||||
@@ -132,7 +129,11 @@ export function OfficeBottomSheet({
|
||||
|
||||
<br />
|
||||
|
||||
<Button type="primary" style={{ width: "100%" }} onClick={handleSave}>
|
||||
<Button
|
||||
type="primary"
|
||||
style={{ width: "100%", boxShadow: "none" }}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{t("address.save")}
|
||||
</Button>
|
||||
</ProBottomSheet>
|
||||
|
||||
@@ -82,7 +82,7 @@ export function RoomBottomSheet({
|
||||
style={{
|
||||
fontSize: 14,
|
||||
height: 50,
|
||||
}}
|
||||
}}
|
||||
autoFocus={false}
|
||||
/>
|
||||
</Form.Item>
|
||||
@@ -128,7 +128,11 @@ export function RoomBottomSheet({
|
||||
|
||||
<br />
|
||||
|
||||
<Button type="primary" style={{ width: "100%" }} onClick={handleSave}>
|
||||
<Button
|
||||
type="primary"
|
||||
style={{ width: "100%", boxShadow: "none" }}
|
||||
onClick={handleSave}
|
||||
>
|
||||
{t("address.save")}
|
||||
</Button>
|
||||
</ProBottomSheet>
|
||||
|
||||
Reference in New Issue
Block a user