forked from learningequality/kolibri-design-system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkgriditem.vue
32 lines (24 loc) · 819 Bytes
/
kgriditem.vue
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<template>
<DocsPageTemplate apiDocs>
<DocsPageSection
title="Overview"
anchor="#overview"
>
<p>For use within <DocsLibraryLink component="KGrid" />.</p>
<p>
Layout input objects can define values for <code>span</code>, <code>alignment</code>, or
both. They can define different layouts for different screen sizes which is very convenient
for quickly building responsive layouts.
</p>
<p>If no span is defined for a particular grid item, it span the full width of the grid.</p>
<p>
If no alignment is defined for a particular layout, the item's contents will be
left-aligned.
</p>
</DocsPageSection>
</DocsPageTemplate>
</template>
<script>
export default {};
</script>
<style lang="scss" scoped></style>