diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-01-02 13:16:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-02 13:16:53 +0100 |
commit | 4a97a04932fd634bb31d35477b01f7596a458d2e (patch) | |
tree | 095d53b5b5d455ecb339e63475b904b6020f76d3 /components | |
parent | 65edd8389f1b175eead2287ddfe62c19108ec967 (diff) | |
parent | 34e044ef96efc8f4e6463bdc767c526f590e505c (diff) | |
download | puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.tar.gz puszcza-4a97a04932fd634bb31d35477b01f7596a458d2e.zip |
Merge pull request #20 from 19pdh/feature/drive-link
WIP Feature/drive link
Diffstat (limited to 'components')
-rw-r--r-- | components/GoogleDriveLink.stories.js | 19 | ||||
-rw-r--r-- | components/GoogleDriveLink.vue | 112 |
2 files changed, 131 insertions, 0 deletions
diff --git a/components/GoogleDriveLink.stories.js b/components/GoogleDriveLink.stories.js new file mode 100644 index 0000000..37d67e8 --- /dev/null +++ b/components/GoogleDriveLink.stories.js @@ -0,0 +1,19 @@ +import { storiesOf } from '@storybook/vue' +import { center } from '../.storybook/decorators' + +import GoogleDriveLink from './GoogleDriveLink' + +const googleDriveLink = { + text: 'Test', + link: 'https://drive.google.com/u/1' +} + +storiesOf('GoogleDriveLink', module) + .addDecorator(center) + .add('default', () => { + return { + components: { GoogleDriveLink }, + template: `<google-drive-link :text="text" :link="link" />`, + data: () => googleDriveLink + } + }) diff --git a/components/GoogleDriveLink.vue b/components/GoogleDriveLink.vue new file mode 100644 index 0000000..c54c630 --- /dev/null +++ b/components/GoogleDriveLink.vue @@ -0,0 +1,112 @@ +<template> + <div class="google-drive-link"> + <div class="image"> + <img src="/assets/google-drive.png" alt="Drive" /> + </div> + <div class="text"> + <p v-html="text"></p> + </div> + <a :href="link"> + <plain-button text="Przejdź" /> + </a> + </div> +</template> + +<script> +import PlainButton from './Buttons/PlainButton' + +export default { + name: 'GoogleDriveLink', + components: { PlainButton }, + props: { + text: { + type: String, + required: true + }, + link: { + type: String, + required: true + } + } +} +</script> + +<style scoped> +.google-drive-link { + background: white; + box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2); + + padding: 20px; + margin: 10px; + + display: flex; + flex-direction: column; + align-items: center; + justify-content: center; +} + +.google-drive-link .text { + margin: 30px 0; + font-size: 18px; +} + +.google-drive-link button, +.google-drive-link a { + width: 100%; + display: block; + margin: auto; + text-decoration: none; + max-width: 300px; +} + +.google-drive-link img { + display: block; + margin: auto; + width: 40px; +} + +.google-drive-link .image { + background: #f3f3f3; + border-radius: 50px; + padding: 15px; + margin: 0 20%; +} + +@media (min-width: 530px) { + .google-drive-link { + flex-direction: row; + } + + .google-drive-link .text { + margin: 0 10px; + flex: 1; + text-align: left; + font-size: 16px; + } + + .google-drive-link .image { + margin: 0; + margin-right: 10px; + padding: 10px; + } + + .google-drive-link img { + width: 30px; + } + + .google-drive-link a, + .google-drive-link button { + margin-right: 0; + } + + .google-drive-link a { + width: 20%; + } +} + +@media (min-width: 960px) { + .google-drive-link { + width: 100%; + } +} +</style> |