Skip to content

Commit

Permalink
Merge pull request #36 from Lenni009/darkmode-title-modal
Browse files Browse the repository at this point in the history
Darkmode title modal
  • Loading branch information
Lenni009 authored Feb 5, 2023
2 parents f5c8aba + e2f8701 commit 0fd5391
Show file tree
Hide file tree
Showing 9 changed files with 1,691 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ After 3 years of development and maintenance, the app was made open source so th
### Steps:
1. Clone this repository
2. In the directory where the `package.json` file is, run `npm i`
3. Run the webApp `npm run dev`
3. Run the webApp `npm start`
4. View it on [localhost:3000](http://localhost:3000)

<br />
Expand Down
2 changes: 2 additions & 0 deletions src/components/common/dialog/baseDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ const customStyles = {
bottom: 'auto',
marginRight: '-50%',
transform: 'translate(-50%, -50%)',
backgroundColor: '#4a4a4a',
borderColor: '#AAA',
},
};

Expand Down
1 change: 1 addition & 0 deletions src/scss/custom.scss
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ $expAlphaThemed: "NMSExpeditionAlphabet", Helvetica, sans-serif !important;
@import "./custom/mobile";
@import "./custom/title";
@import "./custom/fab";
@import "./custom/sweetalertDark";

@import "./custom/catalogue";

Expand Down
6 changes: 3 additions & 3 deletions src/scss/custom/_shareButton.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
}

.form-control {
color: #4e4e4e;
color: #fff;
font-size: 1.25em;
text-align: center;
}
Expand All @@ -61,8 +61,8 @@
}

.share {
background: #444;
box-shadow: 0 4px 0 #2a2a2a;
background: #333;
box-shadow: 0 4px 0 #222;
}

.twitter {
Expand Down
Loading

0 comments on commit 0fd5391

Please sign in to comment.