-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f11c16b
commit 6ceb2cb
Showing
13 changed files
with
515 additions
and
70 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
src/components/Apps/CarSettings/components/CarWashMode/CarWashMode.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
.car-wash-mode-container { | ||
background-color: white; | ||
border-radius: 10px; | ||
padding: 20px; | ||
width: 100%; | ||
height: 100%; | ||
/* display: flex; | ||
flex-direction: column; */ | ||
} | ||
|
||
.car-wash-mode-header { | ||
/* display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
margin-bottom: 20px; */ | ||
} | ||
|
||
.car-wash-mode-title { | ||
font-size: 24px; | ||
font-weight: bold; | ||
} | ||
|
||
.close-button { | ||
/* background: none; */ | ||
/* border: none; */ | ||
/* cursor: pointer; */ | ||
/* padding: 0; */ | ||
} | ||
|
||
.car-wash-mode-content { | ||
/* flex-grow: 1; | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
font-size: 18px; */ | ||
} |
16 changes: 16 additions & 0 deletions
16
src/components/Apps/CarSettings/components/CarWashMode/CarWashMode.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import React from 'react'; | ||
import './CarWashMode.css'; | ||
|
||
export default function CarWashMode({ onClose }) { | ||
return ( | ||
<div className="car-wash-mode-container"> | ||
<div className="car-wash-mode-header"> | ||
<div className="car-wash-mode-title">Car Wash Mode</div> | ||
<div className="car-wash-mode-content">Coming Soon</div> | ||
<div className="close-button ctaBtn" onClick={onClose}> | ||
Exit Car Wash Mode | ||
</div> | ||
</div> | ||
</div> | ||
); | ||
} |
Oops, something went wrong.