Skip to content

Added 2 new rules in bstackdemo site #43

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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/components/App/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class App extends Component {
<Header />
<main style={{ padding: "20px 2%", margin: "0 auto" }}>
<a href="#" >
<img className="m-auto h-56 " alt="banner main" style={{minWidth: '650px', minHeight: '260px'}} src={require(`../../../public/static/banner3.png`)} />
<img className="m-auto h-56 " alt="banner main" style={{minWidth: '750px', minHeight: '280px'}} src={require(`../../../public/static/banner3.png`)} />
</a>
<Shelf />
</main>
Expand Down
3 changes: 2 additions & 1 deletion src/components/Newsletter/index.jsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import React from "react";
import './style.scss';

const Newsletter = () => {
return (
Expand All @@ -7,7 +8,7 @@ const Newsletter = () => {
<input
id="newsletter-email"
name="email-addr"
className="border border-gray-300 rounded-md p-2 mx-2"
className="inputClr border border-gray-300 p-2 mx-2"
type="email"
placeholder="Email"
required
Expand Down
3 changes: 3 additions & 0 deletions src/components/Newsletter/style.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.inputClr {
color: #969d9f;
}