diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-01 14:40:25 +0100 |
---|---|---|
committer | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2019-12-01 14:40:25 +0100 |
commit | 5bd9880c585cbfde37640e4929009cee5421a2a4 (patch) | |
tree | 54da696a013555646e4b7a55ed0394294c4addbd /components/Buttons | |
parent | a28d5383f973e26da70b738f4a319083c45551af (diff) | |
download | puszcza-5bd9880c585cbfde37640e4929009cee5421a2a4.tar.gz puszcza-5bd9880c585cbfde37640e4929009cee5421a2a4.zip |
Fix postlink size
Diffstat (limited to 'components/Buttons')
-rw-r--r-- | components/Buttons/PlainButton.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/Buttons/PlainButton.vue b/components/Buttons/PlainButton.vue index 6e0cde2..58a7f83 100644 --- a/components/Buttons/PlainButton.vue +++ b/components/Buttons/PlainButton.vue @@ -1,5 +1,5 @@ <template> - <button class="button" @click="$emit('click')">{{text}}</button> + <button class="button" @click="$emit('click')">{{ text }}</button> </template> <script> @@ -27,4 +27,4 @@ export default { text-align: center; font: 16px 'Roboto Slab'; } -</style> \ No newline at end of file +</style> |