The Saved bookmarks component has parts. Use the parts to style the following parts of the component:
-
containerThe box holding the various saved bookmarks.
-
bookmarkThe box holding the individual saved bookmarks.
-
linkThe link to the bookmarked topic.
For example, add the following to the component's CSS rules:
[part="link"] {
text-decoration: underline;
color: red;
}
[part="bookmark"] {
border-style: dotted;
}
[part="container"] {
border: 1px solid black;
}