1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <template>
- <div class="mod-footer">
- <span class="copyright">copyright © 2018,EOSGET.</span>
- <div class="text">{{$t('footer')}}</div>
- </div>
- </template>
- <script>
- export default {
- name: 'gameFooter'
- }
- </script>
- <style lang='scss'>
- .mod-footer{
- width: 100%;
- padding: 85px 0;
- background-size: 100% 100%;
- display: -webkit-box;
- display: -ms-flexbox;
- display: flex;
- -webkit-box-orient: vertical;
- -webkit-box-direction: normal;
- -ms-flex-direction: column;
- flex-direction: column;
- background-color: #16093a;
- max-height: 268px;
- .copyright{
- color: #fff;
- font-size: 20px;
- text-align: center;
- margin-bottom: 30px;
- }
- .text{
- color: rgba(255,255,255,.5);
- line-height: 1.5;
- width: 56%;
- margin: 0 auto;
- font-size: 16px;
- text-align: center;
- }
- }
- </style>
|