Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | export default `
/* stylelint-disable selector-class-pattern */
.story-doc-padding > div {
}
.story-doc-padding .doc-spacing > div[class*="slds-p-"] {
width: 8rem;
height: 8rem;
}
.story-doc-padding_content .doc-spacing > div[class*="slds-p-"]:before {
content: '';
display: block;
background: #1589ee;
width: 100%;
height: 100%;
z-index: -1;
overflow: hidden;
border-radius: 4px;
}
`;
|