diff options
| author | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-17 00:22:38 +0100 | 
|---|---|---|
| committer | jdlugosz963 <jdlugosz963@gmail.com> | 2021-12-17 00:22:38 +0100 | 
| commit | c6b4c6a90a3bb77add64994f51d3e2af790c8452 (patch) | |
| tree | c4faaf7e4e48fa09b555c0f4ba50e204f73e8617 /src/components/searcher/Sugestion.vue | |
| parent | cee635ff1db9ba7c9212547831287efe56c69a1f (diff) | |
| download | lom_frontend-c6b4c6a90a3bb77add64994f51d3e2af790c8452.tar.gz lom_frontend-c6b4c6a90a3bb77add64994f51d3e2af790c8452.zip | |
make styles and add some features
Diffstat (limited to 'src/components/searcher/Sugestion.vue')
| -rw-r--r-- | src/components/searcher/Sugestion.vue | 21 | 
1 files changed, 1 insertions, 20 deletions
| diff --git a/src/components/searcher/Sugestion.vue b/src/components/searcher/Sugestion.vue index 4721ca2..15a177d 100644 --- a/src/components/searcher/Sugestion.vue +++ b/src/components/searcher/Sugestion.vue | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | <template> | 1 | <template> | 
| 2 | <div class="sugestion"> | 2 | <div class="w-auto bg-gray-700 p-2 text-center mt-5"> | 
| 3 | <span>{{sugestion[0]}}</span> | 3 | <span>{{sugestion[0]}}</span> | 
| 4 | </div> | 4 | </div> | 
| 5 | </template> | 5 | </template> | 
| @@ -9,24 +9,5 @@ export default { | |||
| 9 | props: { | 9 | props: { | 
| 10 | sugestion: Array | 10 | sugestion: Array | 
| 11 | }, | 11 | }, | 
| 12 | |||
| 13 | created() { | ||
| 14 | this.$nextTick(function () { | ||
| 15 | }) | ||
| 16 | } | ||
| 17 | |||
| 18 | } | 12 | } | 
| 19 | </script> | 13 | </script> | 
| 20 | |||
| 21 | <style scoped> | ||
| 22 | .sugestion { | ||
| 23 | width: 100%; | ||
| 24 | margin-left: auto; | ||
| 25 | margin-right: auto; | ||
| 26 | background-color: #303030; | ||
| 27 | |||
| 28 | margin-top: 10px; | ||
| 29 | padding: 5px; | ||
| 30 | padding-right: 0px; | ||
| 31 | } | ||
| 32 | </style> | ||
