Commit d9c8b0c7 authored by Raul Silas's avatar Raul Silas

refactor: class name change and script rename

parent ddaefd9b
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
"license": "MIT", "license": "MIT",
"private": true, "private": true,
"scripts": { "scripts": {
"serve": "vue-cli-service serve", "dev": "vue-cli-service serve",
"build": "vue-cli-service build" "build": "vue-cli-service build"
}, },
"dependencies": { "dependencies": {
......
<template> <template>
<div> <div>
<div class="logo">
<div class="blocologo">
<img <img
class="img-responsive img-logo" class="img-responsive img-logo"
alt="Vue logo" alt="Vue logo"
...@@ -11,23 +8,16 @@ ...@@ -11,23 +8,16 @@
/> />
<h2 class="title">NTFlix - Lorem Ipsum</h2> <h2 class="title">NTFlix - Lorem Ipsum</h2>
</div> </div>
<div class="filmes"> <div class="films">
<AnimeList /> <AnimeList />
</div> </div>
<div class="planos"> <div class="plans">
<Plans /> <Plans />
</div> </div>
</div> </div>
</template> </template>
<script> <script>
...@@ -44,24 +34,23 @@ export default { ...@@ -44,24 +34,23 @@ export default {
</script> </script>
<style> <style>
.blocologo { .logo {
height: 70%; height: 70%;
text-align: center; text-align: center;
margin: 25px 0; margin: 40px 0;
} }
.title { .title {
padding: 25px 0; padding: 30px 0;
} }
.filmes { .films {
display: flex; display: flex;
justify-content: center; justify-content: center;
background-color: #1f283b; background-color: #1f283b;
} }
.planos { .plans {
margin-bottom: 35px; margin-bottom: 35px;
} }
</style> </style>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment