refactor: moving element style to style tag

This commit is contained in:
Nimit Bhargava 2020-12-07 16:25:46 +05:30
parent 75763a6486
commit c3d3d2d981

View File

@ -1,6 +1,6 @@
<template>
<ds-space v-if="user.socialMedia && user.socialMedia.length" margin="large">
<base-card style="position: relative; height: auto;">
<base-card class="social-media-bc">
<ds-space margin="x-small">
<ds-text tag="h5" color="soft">
{{ $t('profile.socialMedia') }} {{ userName | truncate(15) }}?
@ -40,3 +40,10 @@ export default {
},
}
</script>
<style scoped>
.social-media-bc {
position: relative;
height: auto;
}
</style>