_paragraph.scss 607 B

12345678910111213141516171819
  1. p {
  2. // Override `color: inherit` from Core styles.
  3. &.has-text-color a {
  4. color: var( --wp--style--color--link, var(--wp--custom--color--primary) );
  5. }
  6. &.has-drop-cap:not(:focus):first-letter {
  7. font-size: var(--wp--custom--paragraph--dropcap--typography--font-size);
  8. font-family: var(--wp--custom--paragraph--dropcap--typography--font-family);
  9. font-weight: var(--wp--custom--paragraph--dropcap--typography--font-weight);
  10. margin: var(--wp--custom--paragraph--dropcap--margin);
  11. }
  12. &.has-background {
  13. padding: var(--wp--custom--padding--vertical) var(--wp--custom--padding--horizontal);
  14. }
  15. }