Fixed breadcrumb padding using incorrect syntax

(cherry picked from commit 6c48238fa2)
This commit is contained in:
Alexandre Vryghem
2023-08-17 14:03:28 +02:00
committed by github-actions[bot]
parent a40e26985d
commit 166444fc50

View File

@@ -5,8 +5,8 @@
.breadcrumb { .breadcrumb {
border-radius: 0; border-radius: 0;
margin-top: calc(-1 * var(--ds-content-spacing)); margin-top: calc(-1 * var(--ds-content-spacing));
padding-bottom: var(--ds-content-spacing / 3); padding-bottom: calc(var(--ds-content-spacing) / 3);
padding-top: var(--ds-content-spacing / 3); padding-top: calc(var(--ds-content-spacing) / 3);
background-color: var(--ds-breadcrumb-bg); background-color: var(--ds-breadcrumb-bg);
} }