Skip to content

Commit

Permalink
FE fix header wording, font size, url ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
yennanliu committed Oct 1, 2024
1 parent 7bcc34d commit d843b3d
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 7 deletions.
12 changes: 6 additions & 6 deletions springSpotifyPlayList/frontend/spotify-playlist-ui/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
<header>
<nav>
<router-link to="/">Home</router-link> |
<router-link to="/album">Album</router-link> |
<router-link to="/playlist">Playlist</router-link> |
<router-link to="/profile">Profile</router-link> |
<router-link to="/search_album">Search Album</router-link> |
<router-link to="/search_artist">Search Artist</router-link> |
<router-link to="/profile">User Profile</router-link> |
<router-link to="/album">Get Album (Id)</router-link> |
<router-link to="/search_album">Get Album</router-link> |
<router-link to="/search_artist">Get Artist</router-link> |
<router-link to="/playlist">Create Playlist</router-link> |
<router-link to="/recommendation">Recommendation</router-link>
</nav>
</header>
Expand Down Expand Up @@ -59,7 +59,7 @@ header {
}
nav {
font-size: 1rem;
font-size: 0.7rem;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 2px;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<div class="container">
<h1>Search Album With ID</h1>
<!-- Album ID Form -->
<form class="album-form text-center">
<div class="form-group">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<template>
<div class="container">
<h1>User PlayList List</h1>
<div class="row">
<div class="col-12 text-center">
<h1 class="main-heading">User Playlists</h1>
<!-- <h1 class="main-heading">User Playlists</h1> -->
<h5>{{ msg }}</h5>
</div>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<div class="container">
<h1>Song Recommendation With ML</h1>
<form @submit.prevent="getRecommend" class="recommendation-form">
<!-- Amount Input -->
<div class="form-group">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<div class="container">
<h1>Search Album With Keyword</h1>
<!-- Album Keyword Form -->
<form class="album-form text-center">
<div class="form-group">
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<template>
<div class="container">
<h1>Search Artist With Keyword</h1>
<!-- Artist Keyword Form -->
<form class="album-form text-center">
<div class="form-group">
Expand Down

0 comments on commit d843b3d

Please sign in to comment.