divriots / code.to.design

The only API for HTML to Figma
1 stars 0 forks source link

Simple text split into multiple text blocks in Figma #19

Open adamgiebl opened 10 months ago

adamgiebl commented 10 months ago

Describe the bug image

To Reproduce

<div class="card">
  <div class="description">
    Lorem ipsum dolor sit amet, consectetur adipiscing elit. Curabitur at
    posuere eros. Interdum et malesuada fames ac ante ipsum primis in faucibus.
  </div>
</div>
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  font-family: Arial, "Trebuchet MS", Verdana, sans-serif !important;
  width: 260px;
  padding: 20px 1px;
  margin: 10px 0;
  text-align: center;
  position: relative;
  cursor: pointer;
  background: black;
}

.description {
  color: white;
}