Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <template>
- <div class="col-sm-6 col-md-4 col-lg-3">
- <div class="panel panel-default">
- <div class="panel-body quote">
- <slot></slot>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- props: ['quotes']
- }
- </script>
- <style>
- .panel-body{
- font-family: 'Arizonia', cursive;
- font-size: 24px;
- color: #6e6e6e;
- }
- .quote {
- cursor: pointer;
- }
- .quote:hover {
- background-color: #ffe2e2;
- }
- </style>
Add Comment
Please, Sign In to add comment