More css tweaks
This commit is contained in:
parent
e88c8b954e
commit
0327c545d2
9
App.jsx
9
App.jsx
@ -26,9 +26,10 @@ function Entry(props) {
|
|||||||
<div className="searchResult" key={ entry.id }>
|
<div className="searchResult" key={ entry.id }>
|
||||||
<b>{ entry.sai }</b> - { entry.eng }
|
<b>{ entry.sai }</b> - { entry.eng }
|
||||||
<br />
|
<br />
|
||||||
<span className="synclass">{ entry.syn_category }</span>
|
<span className="synclass">
|
||||||
<br />
|
<i>{ entry.syn_category }</i>
|
||||||
Type: { entry.morph_type }
|
{ entry.morph_type ? `\t\t${entry.morph_type}` : null }
|
||||||
|
</span>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@ -105,12 +106,12 @@ class App extends Component {
|
|||||||
<button onClick={ this.searchSaimiar } className="searchButton">Saimiar</button>
|
<button onClick={ this.searchSaimiar } className="searchButton">Saimiar</button>
|
||||||
<button onClick={ this.searchEng } className="searchButton">English</button>
|
<button onClick={ this.searchEng } className="searchButton">English</button>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<Results
|
<Results
|
||||||
searchResults={ this.state.searchResults }
|
searchResults={ this.state.searchResults }
|
||||||
searchTerm= { this.state.searchTerm }
|
searchTerm= { this.state.searchTerm }
|
||||||
searchType={ this.state.searchType }
|
searchType={ this.state.searchType }
|
||||||
/>
|
/>
|
||||||
|
</div>
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
18
App.scss
18
App.scss
@ -1,5 +1,6 @@
|
|||||||
body {
|
body {
|
||||||
background-color: #f0f0b8;
|
background-color: #f0f0b8;
|
||||||
|
font-size: 14pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
@ -11,6 +12,10 @@ div .container {
|
|||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
div .results {
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
div .textInput {
|
div .textInput {
|
||||||
max-width: 70%;
|
max-width: 70%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
@ -26,3 +31,16 @@ input {
|
|||||||
margin: 10px;
|
margin: 10px;
|
||||||
font-dize: 22px;
|
font-dize: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.searchResult {
|
||||||
|
border-bottom: 1px solid #b2a336;
|
||||||
|
padding: 5px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.synclass {
|
||||||
|
color: #a63333;
|
||||||
|
i {
|
||||||
|
margin-right: 10px;
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user