mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-24 02:29:21 +01:00
* Add team member cards * finish up * Final improvements * Add ads * Fix lint errors * Update docs/.vitepress/data/teamData.json Co-authored-by: Jakob Guddas <github@jguddas.de> * Update docs/.vitepress/data/teamData.json Co-authored-by: Karsa <contact@karsa.org> --------- Co-authored-by: Jakob Guddas <github@jguddas.de> Co-authored-by: Karsa <contact@karsa.org>
37 lines
526 B
Vue
37 lines
526 B
Vue
<template>
|
|
<div class="card-grid-flex">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.card-grid-flex {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
align-content: space-evenly;
|
|
box-sizing: border-box;
|
|
margin: -8px;
|
|
}
|
|
|
|
.card-grid-flex > * {
|
|
flex-basis: 100%;
|
|
box-sizing: border-box;
|
|
padding: 8px;
|
|
}
|
|
|
|
@media (min-width: 960px) {
|
|
.card-grid-flex > * {
|
|
flex-basis: 50%;
|
|
}
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.card-grid-flex > * {
|
|
flex-basis: 33.33%;
|
|
}
|
|
}
|
|
|
|
</style>
|