diff --git a/src/components/album_info.rs b/src/components/album_info.rs index 03b2950..182cc75 100644 --- a/src/components/album_info.rs +++ b/src/components/album_info.rs @@ -13,7 +13,7 @@ pub fn AlbumInfo(albumdata: AlbumData) -> impl IntoView { { albumdata.artists.iter().map(|artist| { view! { -

{artist.name.clone()}

+ {artist.name.clone()} } }).collect::>() } diff --git a/style/album_page.scss b/style/album_page.scss index d00439e..b63e906 100644 --- a/style/album_page.scss +++ b/style/album_page.scss @@ -1,7 +1,5 @@ @import 'theme.scss'; - - .album-page-container { width: 90vw; @@ -65,4 +63,18 @@ } } + a { + color: $text-controls-color; + } + a:visited { + color: $text-controls-color; + } + a:hover { + color: $controls-hover-color; + } + + a:active { + color: $controls-click-color; + } + } \ No newline at end of file