Updated project

Added animations
This commit is contained in:
2021-08-31 23:22:41 +02:00
parent 0bbcf32249
commit 1ccbc2c391
5 changed files with 147 additions and 11 deletions

View File

@@ -6,11 +6,17 @@
<p>Poniżej przedstawiam Państwu, wybraną przeze mnie, listę projektów.</p>
</div>
</projects>
<div class="more-button">
<GhostButton @click.native="$router.push('projects')">
RESZTA PROJEKTÓW
</GhostButton>
</div>
</section>
</template>
<script>
import Projects from '../SelectedProjects'
import GhostButton from '../GhostButton'
export default {
name: 'FavoriteProjects',
@@ -73,16 +79,33 @@ export default {
]
},
components: {
GhostButton,
Projects
}
}
</script>
<style lang="scss">
<style lang="scss" scoped>
@import "scss/default";
.selected-projects {
background-color: #fdfdfd !important;
.more-button {
margin-bottom: 45px;
.btn {
margin: 0 auto;
@media screen and (max-width: 600px) {
width: 100%;
}
}
@media screen and (max-width: 600px) {
padding: 0 25px;
}
}
}
.header-container {
@extend .container;