You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2017. It is now read-only.
in part 6 of the Tour of Heroes tutorial, this example is used. The styles necessary to make the Delete buttons look like they do in that example aren't present anywhere in the tutorial. However, looking at both the live example and the app structure review shows an extra file not present in the previous chapter, sample.css. This file contains the rules to style the delete buttons.
My first thought was to move the contents of sample.css into styles.css, but these rules are specific to a single component, so they don't really belong there. They should go into the heroes.component.css file. However, this means they'll either have to be added to the style section in part 2, at which point the idea of deleting a hero hasn't been introduced yet, or part 6 should be edited to direct the reader to add these rules to heroes.component.css.
Uh oh!
There was an error while loading. Please reload this page.
in part 6 of the Tour of Heroes tutorial, this example is used. The styles necessary to make the Delete buttons look like they do in that example aren't present anywhere in the tutorial. However, looking at both the live example and the app structure review shows an extra file not present in the previous chapter,
sample.css
. This file contains the rules to style the delete buttons.button.delete-button{
float:right;
background-color: gray !important;
color:white;
}
The text was updated successfully, but these errors were encountered: