---
title: Spacing and sizing
date: 2018-10-19 12:24:50
section: designtokens
templateEngineOverride: njk
tags:
- posts
- sections
- designtokens
layout: layouts/base.njk
---
{{ title }}
{% set context = {
"heading": "On this page",
"classModifier": "on-this-page",
"activateJavascript": true,
"navigation": [
{
"text": "Spacing",
"navigation_href": "#spacing",
"currentSection": true
},
{
"text": "Breakpoints",
"navigation_href": "#breakpoints"
}
]
}
%}
{% include "vf-core-components/vf-navigation/vf-navigation.njk" %}
{% render '@vf-section-header', {
"section_title": "Spacing",
"href": "https://github.com/visual-framework/vf-core/blob/develop/components/vf-design-tokens/dist/sass/custom-properties/vf-spacing.custom-properties.scss",
"id": "spacing"
} %}
{% set type %}spacing{% endset %}
{% for item in tokens.spacing.properties %}
{% include "./token-card.njk" %}
{% else %}
Something went wrong.
{% endfor %}
{% render '@vf-section-header', {
"section_title": "Breakpoint widths",
"href": "https://github.com/visual-framework/vf-core/blob/develop/components/vf-design-tokens/dist/sass/maps/vf-breakpoints.map.scss",
"id": "breakpoints"
} %}
{% set type %}breakpoints{% endset %}
{% for item in tokens.breakpoints.properties %}
{% include "./token-card.njk" %}
{% else %}
Something went wrong.
{% endfor %}