closes #1751 Move additional styles from `sample.css` to `hero-search.component.css`. Edit tutorial to reflect the removal of `sample.css` and the change to `heroes.component.css`. Edit tutorial to reflect the addition of `hero-search.component.css` file. Edit `hero-search.component.ts` to include styles from `hero-search.component.css`. Remove reference to `/public/docs/_examples/toh-6/ts/sample.css` from `/public/docs/_examples/toh-6/ts/index.html`.
17 lines
272 B
CSS
17 lines
272 B
CSS
/* #docregion */
|
|
.search-result{
|
|
border-bottom: 1px solid gray;
|
|
border-left: 1px solid gray;
|
|
border-right: 1px solid gray;
|
|
width:195px;
|
|
height: 20px;
|
|
padding: 5px;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
}
|
|
|
|
#search-box{
|
|
width: 200px;
|
|
height: 20px;
|
|
}
|