Compare commits

..

No commits in common. "3b8118948641e8f0a7155c0922a6242826e4cc47" and "242c894903fae86fc1d0099cb9229587e4b5d5cf" have entirely different histories.

2 changed files with 8 additions and 9 deletions

View file

@ -1,10 +1,7 @@
# Movie Night Web [WIP] # Nuxt Minimal Starter
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
Setup is pretty standard for a Nuxt project so I'll leave that below. Just be sure to copy .env.example to .env and fill
in the value.
## Setup ## Setup
Make sure to install dependencies: Make sure to install dependencies:

View file

@ -58,11 +58,10 @@ const criticScores = computed(() => {
</div> </div>
</dl> </dl>
<ButtonAction <ButtonAction v-if="canEdit"
v-if="canEdit" button-text="Remove From List"
button-text="Remove From List" buttonColor="danger"
buttonColor="danger" @action="emit('remove-movie', selectedMovie.id)"
@action="emit('remove-movie', selectedMovie.id)"
/> />
</div> </div>
</template> </template>
@ -72,6 +71,9 @@ dt {
font-weight: bold; font-weight: bold;
} }
.critic-score-source {
}
.movie-detail { .movie-detail {
display: flex; display: flex;
flex-direction: column; flex-direction: column;