Browse Source

Remove margin in BBUI body component

pull/1505/head
Andrew Kingston 5 years ago
parent
commit
54d16a3bf3
  1. 13
      packages/bbui/src/Typography/Body.svelte

13
packages/bbui/src/Typography/Body.svelte

@ -3,27 +3,14 @@
export let size = "M"
export let serif = false
export let noPadding = false
export let weight = 400
export let textAlign = "left"
</script>
<p
style="font-weight:{weight};text-align:{textAlign};"
class:noPadding
class="spectrum-Body spectrum-Body--size{size}"
class:spectrum-Body--serif={serif}
>
<slot />
</p>
<style>
p {
margin-top: 0.75em;
margin-bottom: 0.75em;
}
.noPadding {
padding: 0;
margin: 0;
}
</style>

Loading…
Cancel
Save