styling for songs buttons

practiced-songs
Matthew Huntington 11 months ago
parent 2c1b1fc821
commit bde7379c65

@ -58,10 +58,3 @@
</tbody> </tbody>
</table> </table>
</template> </template>
<style scoped>
button {
padding: 1em 2em;
margin: 0 1em;
}
</style>

@ -32,6 +32,7 @@
<td>{{song.id}}</td> <td>{{song.id}}</td>
<td> <td>
{{song.title}} {{song.title}}
<br/>
<button @click="copy(song.title)">Copy</button> <button @click="copy(song.title)">Copy</button>
<button @click="paste(song.title)">Paste</button> <button @click="paste(song.title)">Paste</button>
</td> </td>
@ -40,3 +41,13 @@
</tbody> </tbody>
</table> </table>
</template> </template>
<style scoped>
button {
padding: 1em 2em;
margin: 1em;
}
td:nth-child(2){
text-align:center;
}
</style>

Loading…
Cancel
Save