/* Component inside grid children should be flexible.
Their styles should be contained and not be responsible for any layout.
We aim to seperate css that cvreates layout from css that styles components */
.component {
  width: 100%;
  padding: 1.5rem;
  background-color: #dcdcdc;
  text-align: left;
}

.component h2 {
  margin: 0;
}

.component * + * {
  margin-top: 1.25rem;
}
/*# sourceMappingURL=component.css.map */