Skip to content

Commit

Permalink
Cambios de estilo
Browse files Browse the repository at this point in the history
  • Loading branch information
AgusMattiussi committed May 18, 2022
1 parent 0421815 commit 71b60ba
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
font-family: Roboto, Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: 0;
Expand Down
1 change: 0 additions & 1 deletion src/components/actions/AcActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,6 @@ export default {
background-color: #FF8A65;
border-radius: 100px;
border: 2px solid black;
margin-bottom: 10px;
height: 40px;
width: 40px;
}
Expand Down
10 changes: 5 additions & 5 deletions src/components/actions/SpeakerActions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
mdi-skip-previous
</v-icon>
</button>
<p>Previous</p>
<p>Anterior</p>
</div>
<div class="action">
<div v-if="speaker.status === 'playing'" @click="pause">
Expand All @@ -28,7 +28,7 @@
mdi-play
</v-icon>
</button>
<p>Resume</p>
<p>Reproducir</p>
</div>
</div>
<div class="action">
Expand All @@ -38,15 +38,15 @@
mdi-play
</v-icon>
</button>
<p>Play</p>
<p>Reproducir</p>
</div>
<div v-else @click="stop">
<button class="btn">
<v-icon class="icon">
mdi-stop
</v-icon>
</button>
<p>Stop</p>
<p>Parar</p>
</div>
</div>
<div class="action">
Expand All @@ -55,7 +55,7 @@
mdi-skip-next
</v-icon>
</button>
<p>Next</p>
<p>Siguiente</p>
</div>
</div>
</div>
Expand Down

0 comments on commit 71b60ba

Please sign in to comment.