Skip to content
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

style: add missing EOF and remove extra whitespaces and new lines #51

Merged
merged 7 commits into from
Jun 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@
left: 0;
bottom: 0;
right: 0;
}
}
1 change: 0 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,4 @@ const App = () => {
)
}


export default withErrorFallback( App )
6 changes: 3 additions & 3 deletions src/components/EditorPanel.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
background-color: #F0EDE9;
}

.tabs .MuiTab-root {
min-width: unset
.tabs .MuiTab-root {
min-width: unset;
}

.tabs {
Expand Down Expand Up @@ -43,4 +43,4 @@
.option svg.fa-square > path {
stroke: black;
stroke-width: .5em;
}
}
4 changes: 2 additions & 2 deletions src/components/Preview.css
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
color: var(--overlay-secondary-larivaar-assist-color);
}

.text {
.text {
display: inline-block;
padding-left: calc( var(--overlay-text-horizontal-padding) * var(--vw-factor) );
padding-right: calc( var(--overlay-text-horizontal-padding) * var(--vw-factor) );
Expand Down Expand Up @@ -132,4 +132,4 @@ overlay.empty .text {

.light {
color: var(--overlay-vishraam-light-color) !important;
}
}
2 changes: 1 addition & 1 deletion src/components/RatioBox.css
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
left: 0;
right: 0;
margin: auto;
}
}
2 changes: 0 additions & 2 deletions src/components/SettingComponent.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Toggle.propTypes = {
onChange: func.isRequired,
}


export const Slider = ( { value, storageKey, units, onChange, ...props } ) => (
<MaterialSlider
valueLabelDisplay="auto"
Expand All @@ -53,7 +52,6 @@ export const Slider = ( { value, storageKey, units, onChange, ...props } ) => (
/>
)


Slider.propTypes = {
value: oneOfType( [ string, number ] ).isRequired,
units: string,
Expand Down
2 changes: 0 additions & 2 deletions src/components/editors/ExportEditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,14 +79,12 @@ const ExportEditor = () => {
Are you sure you want to reset the theme editor?
</DialogTitle>


<DialogContent>
<DialogContentText id="alert-dialog-description">
You cannot undo this action.
</DialogContentText>
</DialogContent>


<DialogActions>

<Button onClick={resetEditor} color="primary">
Expand Down
1 change: 0 additions & 1 deletion src/lib/generate.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,4 @@ const makeCssFile = () => {
return generateFile
}


export default makeCssFile
1 change: 0 additions & 1 deletion src/lib/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ const TEXT_OPTIONS = {

}


export const OPTIONS = {
...PREVIEW_OPTIONS,
...OVERLAY_OPTIONS,
Expand Down