60 lines
1.4 KiB
Vue
60 lines
1.4 KiB
Vue
<template>
|
|
<div class="video-form">
|
|
|
|
<info-icon class="video-form__help-icon help-text__icon"></info-icon>
|
|
<p class="video-form__help-description help-text__description">
|
|
Sie können Videos auf <a class="video-form__platform-link help-text__link" href="https://youtube.com/" target="_blank">Youtube</a>
|
|
oder <a class="video-form__platform-link help-text__link" href="https://vimeo.com/" target="_blank">Vimeo</a>
|
|
hochladen und anschliessen einen Link hier einfügen.
|
|
</p>
|
|
|
|
<input class="video-form__video-link skillbox-input" placeholder="Bsp: https://www.youtube.com/watch?v=dQw4w9WgXcQ">
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import InfoIcon from '@/components/icons/InfoIcon';
|
|
|
|
export default {
|
|
components: {
|
|
InfoIcon
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
@import "@/styles/_variables.scss";
|
|
@import "@/styles/_functions.scss";
|
|
|
|
.video-form {
|
|
display: grid;
|
|
grid-auto-rows: auto;
|
|
grid-template-columns: 40px 1fr;
|
|
grid-column-gap: 16px;
|
|
grid-row-gap: 20px;
|
|
align-items: center;
|
|
|
|
&__help-icon {
|
|
|
|
}
|
|
|
|
&__help-description {
|
|
|
|
}
|
|
|
|
&__platform-link {
|
|
font-family: $sans-serif-font-family;
|
|
text-decoration: underline;
|
|
font-weight: 500;
|
|
font-size: toRem(17px);
|
|
}
|
|
|
|
&__video-link {
|
|
grid-column: 1 / span 2;
|
|
width: $modal-input-width
|
|
}
|
|
|
|
}
|
|
</style>
|