Skip to content

Refactor Site to Vue Components #24

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 23 commits into from
Aug 27, 2019
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Refine CSS on LicenseDescription
  • Loading branch information
akmadian committed Aug 21, 2019
commit bd9336acdc12ccd28e0a545f68bf0ddfab35b1a0
12 changes: 9 additions & 3 deletions src/components/LicenseDescription.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<div>
<div class="chooser-selected-share_adapt">
<div id="chooser-selected-share_adapt">
<p>{{license_noVersion}} attribution means you allow people to</p>
<p id="generated-license-share"><b>Share</b> the material in any medium or format</p>
<p id="generated-license-adapt" v-if="licenseInfo.adapt"><b>Adapt</b> {{licenseInfo.adapt}}</p>
</div>
<p class="chooser-selected-description">
<p id="chooser-selected-description">
{{licenseInfo.description}}
</p>
</div>
Expand Down Expand Up @@ -94,6 +94,12 @@ export default {
}
}
</script>
<style>
<style scoped>
#chooser-selected-share_adapt {
margin-top: .6rem;
}

#chooser-selected-description {
margin-top: .4rem;
}
</style>